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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
    z-index: 2;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 4rem 0;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #0d6efd;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    color: #0b5ed7;
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-cta-btn {
        padding: 0.875rem 1.75rem;
        gap: 0.5rem;
    }
}

/* Block 2 */
.wellness-insights {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.insights-content {
    padding-right: 2rem;
}

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

.insights-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.insights-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.insights-link:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.insights-visual {
    position: relative;
}

.insights-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.insights-image:hover {
    transform: scale(1.02);
}

.insights-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.5rem;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insights-badge i {
    color: #667eea;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .wellness-insights {
        padding: 4rem 0;
    }
    
    .insights-content {
        padding-right: 0;
        text-align: center;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .insights-image {
        height: 300px;
    }
    
    .insights-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .insights-title {
        font-size: 1.8rem;
    }
    
    .insights-text {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .insights-link {
        padding: 0.7rem 1.5rem;
    }
}

/* Block 3 */
.habit-technology {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.habit-technology::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="%23dee2e6" opacity="0.5"/><circle cx="75" cy="75" r="1" fill="%23dee2e6" opacity="0.5"/></svg>');
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.habit-technology .container {
    position: relative;
    z-index: 2;
}

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

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

.tech-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

.tech-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(108, 117, 125, 0.9));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

.tech-card:hover .tech-overlay {
    opacity: 0;
}

.tech-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    text-align: center;
}

.tech-card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-metrics {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 2px solid #dee2e6;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.25rem;
}

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

.innovation-showcase {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f3f4;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.showcase-badge {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
}

.showcase-text p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
    font-weight: 500;
}

.feature-item i {
    color: #0d6efd;
    width: 20px;
    text-align: center;
}

.showcase-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-header {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .habit-technology {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
    
    .innovation-showcase {
        padding: 2rem;
    }
    
    .showcase-features {
        align-items: center;
    }
}

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

.floating-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.floating-circle {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
animation: float 6s ease-in-out infinite;
}

.circle-1 {
width: 80px;
height: 80px;
top: 10%;
left: 15%;
animation-delay: 0s;
}

.circle-2 {
width: 120px;
height: 120px;
top: 60%;
right: 20%;
animation-delay: 2s;
}

.circle-3 {
width: 60px;
height: 60px;
bottom: 20%;
left: 80%;
animation-delay: 4s;
}

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

.form-wrapper {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 24px;
padding: 3rem;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
position: relative;
z-index: 2;
}

.form-header {
text-align: center;
margin-bottom: 2.5rem;
}

.form-icon {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1.5rem;
border: 4px solid #667eea;
}

.form-title {
font-size: 2.2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.form-subtitle {
font-size: 1.1rem;
color: #6c757d;
line-height: 1.6;
margin-bottom: 0;
}

.order-form {
position: relative;
}

.form-group {
margin-bottom: 2rem;
position: relative;
}

.form-label {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 0.75rem;
font-size: 0.95rem;
}

.form-label i {
color: #667eea;
font-size: 1rem;
}

.form-control {
width: 100%;
padding: 1rem;
border: 2px solid #e9ecef;
border-radius: 12px;
font-size: 1rem;
background: #fff;
transition: all 0.3s ease;
position: relative;
z-index: 1;
}

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

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

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

.form-benefits {
background: #f8f9fa;
border-radius: 16px;
padding: 1.5rem;
margin: 2.5rem 0;
border-left: 4px solid #667eea;
}

.benefit-item {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}

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

.benefit-item i {
color: #28a745;
font-size: 1.1rem;
}

.benefit-item span {
color: #495057;
font-weight: 500;
}

.submit-btn {
width: 100%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
padding: 1.25rem 2rem;
border-radius: 16px;
color: white;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
position: relative;
overflow: hidden;
margin-bottom: 1.5rem;
}

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

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

.btn-shimmer {
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}

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

.btn-text {
position: relative;
z-index: 1;
}

.submit-btn i {
position: relative;
z-index: 1;
transition: transform 0.3s ease;
}

.submit-btn:hover i {
transform: scale(1.1);
}

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

.security-badge {
width: 80px;
height: 24px;
object-fit: contain;
margin-bottom: 0.5rem;
}

.security-text {
font-size: 0.85rem;
color: #6c757d;
margin: 0;
}

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

.form-wrapper {
padding: 2rem 1.5rem;
}

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

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

.form-control {
padding: 0.875rem;
}

.submit-btn {
padding: 1rem 1.5rem;
font-size: 1rem;
}
}

@media (max-width: 576px) {
.floating-circle {
display: none;
}

.form-wrapper {
border-radius: 16px;
}

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