/* ========================================
   OUR COMMITMENT PAGE STYLES
   ======================================== */

/* Hero Section */
.commitment-hero {
    background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-medium) 100%);
    padding: 80px 0;
    text-align: center;
}

.commitment-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.commitment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 24px;
}

.commitment-badge svg {
    color: var(--color-white);
}

.commitment-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.commitment-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Main Content */
.commitment-main {
    padding: 80px 0;
    background: var(--color-white);
}

/* Promise Section */
.commitment-promise {
    max-width: 720px;
    margin: 0 auto 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.commitment-promise h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.commitment-promise p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.commitment-promise p:last-child {
    margin-bottom: 0;
}

/* Details */
.commitment-details {
    margin-bottom: 80px;
}

.commitment-details > h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 40px;
    text-align: center;
}

/* Points */
.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.commitment-point {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-green-primary);
    border-radius: 8px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.commitment-point:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.commitment-point-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-green-lightest);
    border-radius: 10px;
}

.commitment-point-icon svg {
    color: var(--color-green-primary);
}

.commitment-point-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.commitment-point-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Contact Line */
.commitment-contact-line {
    text-align: center;
    font-size: 17px;
    color: var(--color-text-muted);
    margin: 0;
    padding: 40px 0 0;
}

.commitment-contact-line strong {
    color: var(--color-text-primary);
}

.commitment-contact-line a {
    color: var(--color-green-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.commitment-contact-line a:hover {
    text-decoration: underline;
}

.commitment-contact-line svg {
    flex-shrink: 0;
}

/* CTA Section */
.commitment-cta {
    background: var(--color-cream);
    padding: 80px 0;
    text-align: center;
}

.commitment-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.commitment-cta p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-cta .btn-primary {
    padding: 16px 40px;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .commitment-details {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .commitment-hero {
        padding: 60px 0;
    }
    
    .commitment-hero h1 {
        font-size: 32px;
    }
    
    .commitment-badge {
        width: 64px;
        height: 64px;
    }
    
    .commitment-badge svg {
        width: 36px;
        height: 36px;
    }
    
    .commitment-main {
        padding: 60px 0;
    }
    
    .commitment-promise {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    
    .commitment-promise h2 {
        font-size: 26px;
    }
    
    .commitment-details {
        margin-bottom: 60px;
    }
    
    .commitment-details > h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .commitment-point {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .commitment-cta {
        padding: 60px 0;
    }
    
    .commitment-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .commitment-hero h1 {
        font-size: 28px;
    }
    
    .commitment-hero p {
        font-size: 16px;
    }
    
    .commitment-promise h2 {
        font-size: 24px;
    }
    
    .commitment-promise p {
        font-size: 16px;
    }
    
    .commitment-point-content h3 {
        font-size: 17px;
    }
    
    .commitment-point-content p {
        font-size: 14px;
    }
}