/* ============================================================
   About page (/more-about-us) — matched to the home page design
   ============================================================ */
.abt {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1f1f1f;
}

.abt *,
.abt *::before,
.abt *::after { box-sizing: border-box; }

.abt-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 800;
    color: #9ed6d6;
    border-bottom: 1px solid rgba(158, 214, 214, 0.35);
    padding-bottom: 4px;
    margin-bottom: 20px;
}

/* ---- Hero (dark) ---- */
.abt-hero {
    position: relative;
    overflow: hidden;
    background: #1a1b1c;
    color: #fff;
    padding: 90px 0;
}

.abt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 28%, rgba(158, 214, 214, 0.10) 0%, transparent 60%);
    z-index: 0;
}

.abt-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.abt-hero__title {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
}

.abt-hero__title em {
    display: block;
    font-style: italic;
    color: #9ed6d6;
    font-size: 0.46em;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.abt-hero__copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16.5px;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 58ch;
}

.abt-hero__highlight {
    border-left: 3px solid #9ed6d6;
    background: rgba(158, 214, 214, 0.06);
    padding: 14px 18px;
    margin: 6px 0 18px;
}

.abt-hero__highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16.5px;
    line-height: 1.7;
}

.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 32px;
    margin-top: 14px;
    background: #9ed6d6;
    color: #1b1b1b;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #1b1b1b;
}

.abt-hero__media {
    align-self: stretch;
    min-height: 380px;
}

.abt-hero__media img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* ---- Features (light) ---- */
.abt-features {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 84px 0;
}

.abt-features__head {
    text-align: center;
    margin-bottom: 48px;
}

.abt-features__head .abt-kicker {
    color: #1f1f1f;
    border-bottom-color: #9ed6d6;
}

.abt-features__head h2 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: clamp(30px, 3vw, 46px);
    letter-spacing: -0.02em;
    margin: 0;
}

.abt-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.abt-feature {
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 38px 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abt-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.abt-feature__icon {
    width: 56px;
    height: 56px;
    background: #1a1b1c;
    color: #9ed6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.abt-feature h3 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: 23px;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.abt-feature p {
    color: #6b6b6b;
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 820px) {
    .abt-hero { padding: 56px 0; }
    .abt-hero__inner { grid-template-columns: 1fr; gap: 34px; }
    .abt-hero__media { min-height: 0; }
    .abt-hero__media img { max-height: 320px; }
    .abt-features { padding: 56px 0; }
}
