/* Swiss Premium Color Palette */
:root {
    --primary-color: #2c3e50;
    --medium-gray: #6c757d;
    --white: #ffffff;
    --border-light: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--medium-gray);
    line-height: 1.5;
    margin-bottom: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0;
}

.hero-content {
    padding-right: 3rem;
}

.hero-badge {
    display: inline-block;
    color: var(--default-color);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    cursor: pointer;
    border: 1px dashed color-mix(in srgb, var(--accent-color) 70%, transparent 30%);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Story Section */
.story-section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-line {
    width: 4rem;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
}

.story-content {
    text-align: left;
}

.story-text {
    font-size: 1.125rem;
    font-weight: 300;
    color: #515557;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: none;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Mission & Vision */
.mission-section {
    padding: 2rem 0;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem var(--shadow-medium);
}

.mission-card {
    border-radius: 0.5rem 0 0 0.5rem;
}

.vision-card {
    border-radius: 0 0.5rem 0.5rem 0;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: rgb(34, 76, 5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card-text {
    font-size: 1rem;
    font-weight: 300;
    color: #515557;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 0 1rem;
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: rgb(34, 76, 5);
    border-color: rgb(34, 76, 5);
}

.value-icon i {
    font-size: 1.1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 2rem 0;
}

.advantages-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 2rem 4rem var(--shadow-medium);
    margin-bottom: 3rem;
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
}

.advantages-content {
    padding-left: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

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

.advantage-icon {
    width: 3rem;
    height: 3rem;
    background: rgb(34, 76, 5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1rem;
    color: var(--white);
}

.advantage-content h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--medium-gray);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    padding: 2rem 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--default-color);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--default-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.025em;
    border-radius: 0.375rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: none;
}

.btn-primary {
    background: rgb(34, 76, 5);
    color: var(--white, --default-color);
}

.btn-primary:hover {
    background: rgb(57, 127, 7);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(34, 75, 6, 0.3);
}

.btn-outline-primary {
    background: var(--surface-color);
    border: 1px solid var(--default-color);
    color: var(--default-color);
}

.btn-outline-primary:hover {
    background: var(--default-color);
    color: var(--surface-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding-right: 1.5rem;
    }
    
    .advantages-content {
        padding-left: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .advantages-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .mission-card,
    .vision-card {
        margin-bottom: 2rem;
        border-radius: 0.5rem;
    }
    
    .story-section,
    .mission-section,
    .values-section,
    .advantages-section,
    .cta-section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .story-section,
    .mission-section,
    .values-section,
    .advantages-section,
    .cta-section {
        padding: 1rem 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 1rem 0.8rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.0rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .advantages-image {
        margin-bottom: 2rem;
    }
    
    .value-item {
        margin-bottom: 1rem;
    }
}

/* Animation Enhancements */
.fade-in {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
