@charset "UTF-8";

/* ══════════════════════════════════════════════════════════════
   Company Why — Body Section: Grid Cards with Icon Headers
   Brand palette:  Green #00853e  Gold #fbbb10  Dark #1a1a1a
   ══════════════════════════════════════════════════════════════ */

.why-design-c {
    background: linear-gradient(180deg, #f0f4f1 0%, #e6ebe7 100%);
    padding: 60px 0 50px;
    position: relative;
}
.why-design-c::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00853e, #fbbb10, #00853e);
}

/* Intro */
.why-c-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 0 24px;
}
.why-c-intro .kicker {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,133,62,0.08);
    color: #00853e;
    margin-bottom: 10px;
}
.why-c-intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.why-c-intro hr {
    width: 80px;
    height: 3px;
    background: #00853e;
    border: none;
    margin: 0 auto 16px;
    border-radius: 2px;
}
.why-c-intro p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

/* Card grid */
.why-c-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-c-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(0,133,62,0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.why-c-card:hover {
    border-color: #00853e;
    box-shadow: 0 10px 30px rgba(0,133,62,0.1);
}

.why-c-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.why-c-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}

.why-c-card-body {
    padding: 24px 28px 28px;
}
.why-c-card-body .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #00853e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
}
.why-c-card-body h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.why-c-card-body hr {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00853e, #fbbb10);
    border: none;
    margin: 0 0 14px;
    border-radius: 2px;
}
.why-c-card-body p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Quote */
.why-c-quote {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 40px;
    text-align: center;
    background: rgba(255,255,255,0.6);
    border-radius: 14px;
    border: 2px solid rgba(0,133,62,0.1);
}
.why-c-quote blockquote {
    font-size: 17px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    border: none;
    margin: 0;
    padding: 0;
}
.why-c-quote .quote-author {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    color: #00853e;
}

/* Summary bar */
.why-c-summary {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.why-c-summary-text {
    background: #fff;
    border: 2px solid rgba(0,133,62,0.15);
    border-radius: 14px;
    padding: 32px 32px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.why-c-summary-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00853e, #fbbb10);
    border-radius: 14px 0 0 14px;
}
.why-c-summary-text h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.why-c-summary-text hr {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00853e, #fbbb10);
    border: none;
    margin: 0 0 16px;
    border-radius: 2px;
}
.why-c-summary-text p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
}
.why-c-summary-text .summary-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0,133,62,0.06);
    border: 1px solid rgba(0,133,62,0.15);
    border-radius: 8px;
}
.why-c-summary-text .summary-highlight i {
    color: #00853e;
    font-size: 16px;
}
.why-c-summary-text .summary-highlight span {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}
.why-c-summary-glance {
    background: #00853e;
    border-radius: 14px;
    padding: 28px;
    color: #fff;
}
.why-c-summary-glance h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fbbb10;
    margin: 0 0 16px;
}
.why-c-summary-glance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-c-summary-glance li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.why-c-summary-glance li:last-child { border-bottom: none; }
.why-c-summary-glance li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: #fbbb10;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .why-c-grid { grid-template-columns: 1fr; }
    .why-c-summary { grid-template-columns: 1fr; }
    .why-c-quote { margin-left: 16px; margin-right: 16px; }
}
