/* Home Page Styles */

/* Mission Section */
.mission-section {
    background: #111827;
    padding: 48px 0;
}
.mission-text {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}
.mission-cta {
    text-align: center;
    margin-top: 24px;
}
.mission-btn {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid #DC2626;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.mission-btn:hover {
    background: #DC2626;
    color: #ffffff;
}

/* What We Do Section */
.what-we-do-section {
    background: #f8fafc;
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.expertise-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--color-grey-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
    transform: translateY(-4px);
}

.expertise-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.expertise-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

.expertise-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-grey-900);
    margin: 0 0 12px;
}

.expertise-desc {
    font-size: 0.9375rem;
    color: var(--color-grey-600);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.expertise-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.expertise-link:hover {
    gap: 10px;
}

.expertise-cta {
    margin-top: 48px;
}

@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 24px 20px;
    }
}

/* Featured Product Section */
.featured-product-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.featured-product-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo-shape {
    position: absolute;
    opacity: 0.07;
}
.geo-circle-1 {
    width: 300px;
    height: 300px;
    border: 3px solid #DC2626;
    border-radius: 50%;
    top: -100px;
    right: -50px;
}
.geo-circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    border-radius: 50%;
    bottom: 10%;
    left: -40px;
}
.geo-circle-3 {
    width: 80px;
    height: 80px;
    border: 2px solid #2d5016;
    border-radius: 50%;
    top: 40%;
    right: 8%;
}
.geo-circle-4 {
    width: 200px;
    height: 200px;
    border: 2px dashed #DC2626;
    border-radius: 50%;
    bottom: -60px;
    right: 20%;
}
.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #DC2626;
    top: 15%;
    left: 5%;
    transform: rotate(15deg);
}
.geo-triangle-2 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #2d5016;
    bottom: 20%;
    right: 10%;
    transform: rotate(-20deg);
}
.geo-triangle-3 {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid #DC2626;
    top: 60%;
    left: 15%;
    transform: rotate(45deg);
    opacity: 0.05;
}
.geo-polygon-1 {
    width: 120px;
    height: 104px;
    background: #2d5016;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 25%;
    right: 3%;
}
.geo-polygon-2 {
    width: 80px;
    height: 69px;
    background: #DC2626;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 30%;
    left: 8%;
    opacity: 0.05;
}
.geo-line-1 {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DC2626, transparent);
    top: 20%;
    left: 10%;
    transform: rotate(-30deg);
}
.geo-line-2 {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2d5016, transparent);
    bottom: 25%;
    right: 15%;
    transform: rotate(25deg);
}
.geo-line-3 {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DC2626, transparent);
    top: 50%;
    left: 3%;
    transform: rotate(-60deg);
}
.geo-line-4 {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2d5016, transparent);
    top: 70%;
    right: 5%;
    transform: rotate(40deg);
}
.geo-square-1 {
    width: 60px;
    height: 60px;
    border: 2px solid #2d5016;
    top: 10%;
    left: 20%;
    transform: rotate(45deg);
}
.geo-square-2 {
    width: 40px;
    height: 40px;
    background: #DC2626;
    bottom: 15%;
    right: 25%;
    transform: rotate(15deg);
    opacity: 0.05;
}
.geo-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#2d5016 2px, transparent 2px);
    background-size: 15px 15px;
    top: 35%;
    left: 2%;
}
.geo-dots-2 {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#DC2626 2px, transparent 2px);
    background-size: 12px 12px;
    bottom: 40%;
    right: 2%;
}
.featured-product-container {
    position: relative;
    z-index: 1;
}
.featured-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #DC2626;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.featured-product-badge i {
    color: #DC2626;
}
.featured-product-header {
    text-align: center;
    margin-bottom: 48px;
}
.featured-product-title {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1e3a1e;
    margin-bottom: 16px;
    line-height: 1.2;
}
.featured-product-title span {
    color: #2d5016;
}
.featured-product-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.featured-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.featured-product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.featured-product-card:hover {
    border-color: #2d5016;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}
.featured-product-card.card-featured {
    grid-row: span 3;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-color: #2d5016;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.featured-product-card.card-featured .featured-product-icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
}
.featured-product-card.card-featured .featured-product-card-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}
.featured-product-card.card-featured .featured-product-card-desc {
    font-size: 1rem;
    margin-bottom: 24px;
}
.workflow-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.workflow-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.workflow-bullets li:last-child {
    border-bottom: none;
}
.workflow-bullets li i {
    color: #2d5016;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.workflow-bullets li strong {
    color: #111827;
}
.featured-product-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.featured-product-right-col .featured-product-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}
.featured-product-right-col .featured-product-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.featured-product-right-col .featured-product-card-content {
    flex: 1;
}
.featured-product-right-col .featured-product-card-title {
    margin-bottom: 8px;
}
.featured-product-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffffff;
}
.featured-product-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}
.featured-product-card-desc {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}
.featured-product-cta {
    text-align: center;
}
.featured-product-cta .btn {
    background: #2d5016;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.featured-product-cta .btn:hover {
    background: #1e3a0e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}
.featured-product-cta .btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
    margin-left: 16px;
}
.featured-product-cta .btn-outline:hover {
    background: #f9fafb;
    border-color: #DC2626;
    color: #DC2626;
    box-shadow: none;
}

@media (max-width: 992px) {
    .geo-circle-1 { width: 200px; height: 200px; }
    .geo-polygon-1 { display: none; }
}

@media (max-width: 768px) {
    .featured-product-section {
        padding: 60px 0;
    }
    .featured-product-grid {
        grid-template-columns: 1fr;
    }
    .featured-product-card.card-featured {
        grid-row: span 1;
    }
    .featured-product-cta .btn-outline {
        margin-left: 0;
        margin-top: 12px;
    }
    .featured-product-cta {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .geo-shape { opacity: 0.04; }
    .geo-triangle-1, .geo-triangle-2, .geo-polygon-2, .geo-dots, .geo-dots-2 { display: none; }
}

/* Pain Points Section */
.pain-points-section {
    background: #fff;
    padding: 60px 0;
}
.pain-points-category-group {
    margin-bottom: 48px;
}
.pain-points-category-group:last-child {
    margin-bottom: 0;
}
.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-grey-200);
}
.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(45, 80, 22, 0.05));
    color: #2d5016;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-grey-800);
    margin: 0;
}
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pain-point-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-grey-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}
.pain-point-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.1);
    transform: translateY(-4px);
}
.pain-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #2d5016;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}
.pain-point-content {
    flex: 1;
}
.pain-point-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.pain-point-description {
    color: var(--color-grey-500);
    margin-bottom: 12px;
    font-size: 0.9375rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pain-point-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
    font-size: 0.875rem;
}
.pain-point-link:hover { gap: 12px; }

@media (max-width: 1200px) {
    .pain-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pain-point-card {
        padding: 20px;
    }
    .category-header {
        margin-bottom: 16px;
    }
    .category-name {
        font-size: 1.125rem;
    }
}

/* Featured Service Section */
.featured-service-section {
    background: #fff;
    padding: 60px 0;
}
.featured-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.featured-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.2);
    color: #2d5016;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.featured-service-badge i {
    color: #2d5016;
}
.featured-service-title {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #1e3a1e;
    margin-bottom: 16px;
    line-height: 1.2;
}
.featured-service-excerpt {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}
.featured-service-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px 20px;
    background: #f0fdf4;
    border-radius: 10px;
}
.featured-service-price .price-label {
    font-size: 0.875rem;
    color: #2d5016;
    font-weight: 500;
}
.featured-service-price .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}
.featured-service-price .price-unit {
    font-size: 0.875rem;
    color: #2d5016;
}
.featured-service-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.featured-service-actions .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.featured-service-actions .btn-primary {
    background: #2d5016;
    color: #fff;
    border: 2px solid #2d5016;
}
.featured-service-actions .btn-primary:hover {
    background: #1e3a0e;
    border-color: #1e3a0e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}
.featured-service-actions .btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}
.featured-service-actions .btn-outline:hover {
    border-color: #2d5016;
    color: #2d5016;
}
.featured-service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.featured-service-image a {
    display: block;
}
.featured-service-image img {
    width: 100%;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-service-image:hover img {
    transform: scale(1.03);
}
.featured-image-placeholder {
    width: 100%;
    aspect-ratio: 1200 / 630;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5016;
    font-size: 4rem;
}

@media (max-width: 992px) {
    .featured-service {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .featured-service-content {
        order: 2;
        text-align: center;
    }
    .featured-service-actions {
        justify-content: center;
    }
    .featured-service-image {
        order: 1;
    }
}
@media (max-width: 600px) {
    .featured-service-actions {
        flex-direction: column;
    }
    .featured-service-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Preview */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.blog-image { height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 0.8125rem; }
.blog-category { color: var(--color-primary); font-weight: 500; }
.blog-date { color: var(--color-grey-500); }
.blog-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 12px; }
.blog-title a { color: var(--color-grey-800); text-decoration: none; transition: color 0.3s ease; }
.blog-title a:hover { color: var(--color-primary); }
.blog-excerpt { color: var(--color-grey-500); margin-bottom: 16px; font-size: 0.9375rem; }
.blog-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-weight: 500; text-decoration: none; transition: gap 0.3s ease; }
.blog-link:hover { gap: 12px; }

/* Newsletter */
.newsletter-section { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; }
.newsletter-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter-text h2 { font-size: 1.75rem; margin-bottom: 8px; }
.newsletter-text p { opacity: 0.9; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { padding: 14px 20px; border: none; border-radius: 8px; font-size: 1rem; width: 300px; }
.newsletter-form .btn { background: #fff; color: var(--color-primary); }

/* Technologies Word Art */
.tech-wordart-section {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}
.tech-wordart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
    padding: 0 24px;
}
.tech-word {
    white-space: nowrap;
}
.tech-word-1 {
    font-family: 'Patrick Hand', cursive;
    font-size: 2.5rem;
    color: #2d5016;
}
.tech-word-2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #DC2626;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.tech-word-3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-style: italic;
    color: #3d6b1f;
}
.tech-word-4 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #1e3a1e;
}
.tech-word-5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6b7280;
}
.tech-word-6 {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.5rem;
    color: #DC2626;
}
.tech-word-7 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #2d5016;
    text-transform: uppercase;
}
.tech-word-8 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #4b5563;
}
.tech-word-9 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #3d6b1f;
}
.tech-word-10 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #DC2626;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .tech-wordart { gap: 12px 24px; }
    .tech-word-1 { font-size: 1.75rem; }
    .tech-word-2 { font-size: 1rem; }
    .tech-word-3 { font-size: 1.25rem; }
    .tech-word-4 { font-size: 1.5rem; }
    .tech-word-7 { font-size: 1.5rem; }
    .tech-word-9 { font-size: 1.25rem; }
}

/* CTA */
.bg-primary { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; }
.bg-light { background-color: var(--color-grey-50); }
.cta-section { background: #fff; }
.cta-title-dark { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; color: var(--color-grey-900); }
.cta-text-dark { font-size: 1.25rem; color: var(--color-grey-500); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }
.btn-white { background: #fff; color: var(--color-primary); }
.btn-outline-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--color-primary); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* Section Headers */
.section-header { margin-bottom: 32px; }
.section-label { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--color-primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.section-subtitle { color: var(--color-grey-500); font-size: 1.125rem; }

/* Culture Section */
.culture-section { background: var(--color-grey-100); }
.culture-layout { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: start; position: relative; }
.culture-values .section-label { display: block; text-align: left; margin-bottom: 8px; }
.culture-values .section-title { text-align: left; margin-bottom: 24px; }
.culture-intro { color: var(--color-grey-600); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 32px; }
.culture-accordion { display: flex; flex-direction: column; gap: 16px; }
.culture-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); border: 1px solid var(--color-grey-200); transition: all 0.3s ease; }
.culture-item:hover { border-color: var(--color-primary); box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1); }
.culture-item.active { border-color: var(--color-primary); }
.culture-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; transition: background 0.3s ease; }
.culture-header:hover { background: var(--color-grey-50); }
.culture-item.active .culture-header { background: rgba(45, 80, 22, 0.05); }
.culture-title { display: flex; align-items: center; gap: 16px; font-size: 1.125rem; font-weight: 600; color: var(--color-grey-800); margin: 0; }
.culture-icon { width: 40px; height: 40px; background: rgba(45, 80, 22, 0.1); color: var(--color-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.culture-toggle { width: 32px; height: 32px; background: var(--color-grey-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-grey-500); font-size: 1.25rem; transition: all 0.3s ease; flex-shrink: 0; }
.culture-item.active .culture-toggle { background: var(--color-primary); color: #fff; transform: rotate(45deg); }
.culture-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.culture-item.active .culture-content { max-height: 300px; }
.culture-text { padding: 0 24px 24px; color: var(--color-grey-600); line-height: 1.7; font-size: 0.9375rem; }
.culture-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); height: fit-content; margin-top: 140px; }
.culture-image img { width: 100%; height: auto; display: block; object-fit: cover; min-height: 400px; object-position: center top; }
.culture-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); color: #fff; }
.culture-image-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.culture-image-subtitle { font-size: 0.875rem; opacity: 0.9; margin: 0; }

/* Quote Section */
.quote-section-home {
    background: linear-gradient(135deg, #2D5016 0%, #1e3710 40%, #1f2937 80%, #111827 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.quote-section-home .quote-text {
    font-family: 'Patrick Hand', cursive;
    font-size: 2.5rem;
    color: white;
    line-height: 1.5;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .culture-layout { grid-template-columns: 1fr; gap: 48px; }
    .culture-image { max-width: 400px; margin: 0 auto; margin-top: 0; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
    .cta-title { font-size: 1.75rem; }
    .cta-buttons { flex-direction: column; }
}
