/* ============================================================
   ABOUT PAGE STYLES
   about.css | Loaded only on about.php
   ============================================================ */

/* ---------- PAGE BANNER ---------- */
.page-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(80px, 12vw, 160px) 0 clamp(56px, 8vw, 110px);
    background:
        radial-gradient(ellipse 70% 60% at 75% 0%, rgba(34,197,94,.12) 0%, transparent 60%),
        linear-gradient(180deg, #fcfffb 0%, #eef6e9 100%);
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
    z-index: -1;
}
.page-banner__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin: 0 0 18px;
}
.page-banner .lead {
    color: var(--be-text-2);
    font-size: 1.1rem;
    margin: 0 auto 24px;
    max-width: 560px;
}
.page-banner__crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--be-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--be-text-2);
    background: rgba(255,255,255,.7);
    border: 1px solid var(--be-line);
    padding: 8px 18px;
    border-radius: var(--be-radius-pill);
    backdrop-filter: blur(8px);
}
.page-banner__crumb a {
    color: var(--be-green-700);
    font-weight: 700;
}
.page-banner__crumb i { color: var(--be-muted); font-size: 10px; }

/* ---------- ABOUT-INTRO (shared with home but enriched here) ---------- */
.about-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
@media (max-width: 900px) { .about-intro__grid { grid-template-columns: 1fr; } }

.about-intro__collage {
    position: relative;
    aspect-ratio: 4/3.6;
}
.about-intro__collage img {
    position: absolute;
    border-radius: var(--be-radius-xl);
    object-fit: cover;
    box-shadow: var(--be-shadow-md);
}
.about-intro__collage img:nth-of-type(1) {
    top: 0; left: 0;
    width: 64%; height: 70%;
    z-index: 1;
}
.about-intro__collage img:nth-of-type(2) {
    bottom: 0; right: 0;
    width: 56%; height: 60%;
    border: 8px solid #fff;
    z-index: 2;
}
.about-intro__collage::before {
    content: '';
    position: absolute;
    bottom: 8%; left: 0;
    width: 130px; height: 130px;
    background: var(--be-gradient);
    border-radius: 30px;
    opacity: .18;
    z-index: 0;
}
.about-intro__badge {
    position: absolute;
    bottom: 12%;
    left: 36%;
    z-index: 3;
    background: #fff;
    border-radius: var(--be-radius-lg);
    padding: 18px 22px;
    box-shadow: var(--be-shadow-md);
    display: flex; align-items: center; gap: 14px;
}
.about-intro__badge .num {
    font-family: var(--be-font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--be-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.about-intro__badge .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--be-text-2);
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 540px) {
    .about-intro__badge { left: 12%; padding: 14px 16px; }
    .about-intro__badge .num { font-size: 1.6rem; }
}

.about-intro__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    margin: 28px 0 32px;
    list-style: none;
    padding: 0;
}
@media (max-width: 540px) { .about-intro__features { grid-template-columns: 1fr; } }
.about-intro__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--be-ink);
    font-size: 14.5px;
}
.about-intro__features li::before {
    content: '✓';
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--be-green-500);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ---------- WHY-CHOOSE CARDS (image + caption) ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--be-line);
    border-radius: var(--be-radius-lg);
    overflow: hidden;
    transition: transform .45s var(--be-ease), box-shadow .45s var(--be-ease), border-color .35s var(--be-ease);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--be-shadow-md);
    border-color: var(--be-green-200);
}
.why-card__img {
    aspect-ratio: 4/2.6;
    overflow: hidden;
    position: relative;
}
.why-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--be-ease);
}
.why-card:hover .why-card__img img { transform: scale(1.06); }
.why-card__img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,22,32,.20) 100%);
}
.why-card__num {
    position: absolute;
    top: 16px; right: 16px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--be-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--be-font-display);
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--be-shadow-green);
    z-index: 2;
}
.why-card__body { padding: 26px 24px 28px; }
.why-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.why-card__text  { color: var(--be-text-2); font-size: .94rem; line-height: 1.7; margin: 0; }

/* ---------- MISSION / VISION ---------- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}
@media (max-width: 900px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-grid--flip > div:first-child { order: 2; }
@media (max-width: 900px) { .mv-grid--flip > div:first-child { order: 0; } }

.mv-visual {
    position: relative;
}
.mv-visual img {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: block;
    border-radius: var(--be-radius-xl);
    box-shadow: var(--be-shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3.2;
}
.mv-visual::after {
    content: '';
    position: absolute;
    inset: auto -16px -16px auto;
    width: 140px; height: 140px;
    border-radius: var(--be-radius-xl);
    background: var(--be-gradient);
    opacity: .15;
    z-index: -1;
}
.mv-grid--flip .mv-visual::after {
    inset: -16px -16px auto auto;
}

.mv-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
    counter-reset: mv;
}
.mv-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--be-line);
    border-radius: var(--be-radius);
    transition: border-color .3s ease, transform .3s ease;
    counter-increment: mv;
}
.mv-list li:hover {
    border-color: var(--be-green-300);
    transform: translateX(4px);
}
.mv-list li::before {
    content: counter(mv, decimal-leading-zero);
    display: flex; align-items: center; justify-content: center;
    background: var(--be-gradient);
    color: #fff;
    font-family: var(--be-font-display);
    font-weight: 800;
    font-size: 13px;
    border-radius: 10px;
    height: 34px;
    box-shadow: 0 6px 14px rgba(34,197,94,.25);
}
.mv-list strong {
    font-family: var(--be-font-display);
    font-weight: 700;
    color: var(--be-ink);
    display: block;
    margin-bottom: 4px;
}
.mv-list p {
    margin: 0;
    color: var(--be-text-2);
    font-size: .92rem;
    line-height: 1.6;
}

/* ---------- WORK PROCESS (3-step) ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 16%; right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--be-green-300) 0 8px, transparent 8px 16px);
    z-index: 0;
}
@media (max-width: 900px) { .process-grid::before { display: none; } }

.process-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--be-line);
    border-radius: var(--be-radius-lg);
    padding: 32px 28px 28px;
    text-align: center;
    z-index: 1;
    transition: transform .4s var(--be-ease), box-shadow .4s var(--be-ease), border-color .35s var(--be-ease);
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--be-shadow-md);
    border-color: var(--be-green-300);
}
.process-card__num {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--be-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--be-font-display);
    font-weight: 800;
    font-size: 22px;
    box-shadow: var(--be-shadow-green);
    border: 6px solid #fff;
    outline: 1px solid var(--be-green-200);
    outline-offset: -7px;
}
.process-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.process-card__text { color: var(--be-text-2); font-size: .94rem; line-height: 1.65; margin: 0; }

/* ---------- FAQ ---------- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-visual {
    position: sticky;
    top: 120px;
}
.faq-visual img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
}
.faq-callbar {
    background: #fff;
    border-radius: var(--be-radius-lg);
    padding: 22px 24px;
    margin-top: 24px;
    box-shadow: var(--be-shadow);
    display: flex; align-items: center; gap: 18px;
    border: 1px solid var(--be-line);
}
.faq-callbar__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--be-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.faq-callbar__text {
    font-family: var(--be-font-display);
    font-size: 13px;
    color: var(--be-text-2);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.faq-callbar__phones {
    font-family: var(--be-font-display);
    font-weight: 800;
    color: var(--be-ink);
    font-size: 1.05rem;
}
.faq-callbar__phones a { color: inherit; }
.faq-callbar__phones a:hover { color: var(--be-green-700); }

/* FAQ accordion styles now live in main.css (shared across pages). */

/* ---------- TEAM (Core Leaders) ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

.team-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--be-line);
    border-radius: var(--be-radius-xl);
    overflow: hidden;
    transition: transform .45s var(--be-ease), box-shadow .45s var(--be-ease);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--be-shadow-md);
}
.team-card__photo {
    aspect-ratio: 4/4.4;
    position: relative;
    overflow: hidden;
    background: var(--be-bg-soft);
}
.team-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--be-ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,22,32,.55) 100%);
    opacity: 0;
    transition: opacity .35s var(--be-ease);
}
.team-card:hover .team-card__photo::after { opacity: 1; }

.team-card__social {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translate(-50%, 10px);
    opacity: 0;
    display: flex; gap: 8px;
    transition: opacity .3s var(--be-ease) .05s, transform .35s var(--be-ease) .05s;
    z-index: 2;
}
.team-card:hover .team-card__social {
    opacity: 1;
    transform: translate(-50%, 0);
}
.team-card__social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: var(--be-green-700);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: background .25s ease, color .25s ease;
}
.team-card__social a:hover {
    background: var(--be-gradient);
    color: #fff;
}

.team-card__body {
    padding: 20px 22px 24px;
    text-align: center;
}
.team-card__name {
    font-size: 1.2rem;
    margin: 0 0 4px;
}
.team-card__role {
    color: var(--be-green-700);
    font-family: var(--be-font-display);
    font-weight: 600;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* ---------- CALL-NOW BAR (used inside FAQ banner) ---------- */
@media (max-width: 540px) {
    .faq-callbar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
}
