/* about page */
/* ── About Page ── */
.about-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* Hero */
.about-hero {
    text-align: center;
    margin-bottom: 64px;
}
.about-hero h1 {
    font-size: 42px;
    font-weight: normal;
    color: #111;
    letter-spacing: -.5px;
    margin-bottom: 18px;
    line-height: 1.15;
}
.about-hero h1 span {
    color: #059669;
}
.about-hero p {
    font-size: 18px;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stats row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 72px;
}
.stat-cell {
    background: #fff;
    padding: 28px 20px;
    text-align: center;
}
.stat-cell .stat-num {
    font-size: 32px;
    font-weight: normal;
    color: #111;
    letter-spacing: -.5px;
    display: block;
    margin-bottom: 4px;
}
.stat-cell .stat-label {
    font-size: 13px;
    color: #737373;
    font-weight: normal;
}

/* Sections */
.about-section {
    margin-bottom: 64px;
}
.about-section-label {
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #059669;
    margin-bottom: 10px;
}
.about-section h2 {
    font-size: 28px;
    font-weight: normal;
    color: #111;
    letter-spacing: -.3px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.about-section p {
    font-size: 16px;
    color: #000;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 700px;
}

/* 3-col cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.about-card {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px 20px;
}
.about-card-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}
.about-card h3 {
    font-size: 15px;
    font-weight: normal;
    color: #111;
    margin-bottom: 8px;
}
.about-card p {
    font-size: 13.5px;
    color: #737373;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* 2-col diff list */
.about-diff {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.diff-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.diff-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
.diff-item h4 {
    font-size: 14px;
    font-weight: normal;
    color: #111;
    margin-bottom: 4px;
}
.diff-item p {
    font-size: 13.5px;
    color: #737373;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.value-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 22px 20px;
    border-left: 3px solid #059669;
}
.value-item h4 {
    font-size: 14px;
    font-weight: normal;
    color: #111;
    margin-bottom: 6px;
}
.value-item p {
    font-size: 13.5px;
    color: #737373;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* Location */
.about-location {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 64px;
}
.location-icon { font-size: 36px; flex-shrink: 0; }
.location-body h3 { font-size: 17px; font-weight: normal; color: #111; margin-bottom: 10px; }
.location-body p  { font-size: 14px; color: #000; line-height: 1.7; margin-bottom: 10px; }
.location-address {
    font-style: normal;
    font-size: 13.5px;
    color: #737373;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.location-address strong { color: #111; font-weight: normal; }

/* CTA */
.about-cta {
    background: #111;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}
.about-cta h2 {
    font-size: 28px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.about-cta p {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #059669;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s, transform .12s;
    box-shadow: 0 4px 14px rgba(5,150,105,.4);
}
.about-cta-btn:hover { background: #047857; transform: translateY(-2px); }
.about-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 14px;
    padding: 13px 24px;
    color: #a0a0a0;
    font-size: 15px;
    font-weight: normal;
    border-radius: 999px;
    border: 1px solid #333;
    text-decoration: none;
    transition: color .15s, border-color .15s;
}
.about-cta-secondary:hover { color: #fff; border-color: #555; }

/* Responsive */
@media (max-width: 768px) {
    .about-wrap { padding: 40px 18px 60px; }
    .about-hero h1 { font-size: 30px; }
    .about-hero p  { font-size: 16px; }
    .about-stats   { grid-template-columns: repeat(2, 1fr); }
    .about-cards   { grid-template-columns: 1fr; }
    .about-diff    { grid-template-columns: 1fr; }
    .about-values  { grid-template-columns: 1fr; }
    .about-location { flex-direction: column; gap: 16px; padding: 24px; }
    .about-cta { padding: 36px 24px; }
    .about-cta h2  { font-size: 22px; }
    .about-cta-secondary { display: none; }
}
