/* ============================================================
   About page — landing theme (aligned with home / landing.css)
   ============================================================ */
.about-page {
    position: relative;
    min-height: 100vh;
    background: var(--landing-panel, #0c1610);
    color: var(--landing-ink, #f4f1ea);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Overlay the site header on top of the hero banner */
.about-page .landing-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: transparent;
}

/* ── Hero ── */
.about-hero {
    position: relative;
    padding: 8rem 0 5rem;
    color: var(--landing-ink, #f4f1ea);
    overflow: hidden;
    background-color: var(--landing-panel-2, #13261c);
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.05) brightness(1.06);
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 22, 16, 0.44) 0%, rgba(12, 22, 16, 0.70) 55%, var(--landing-panel, #121c16) 100%),
        linear-gradient(135deg, rgba(12, 22, 16, 0.54), rgba(31, 107, 69, 0.28));
}
.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    text-align: left;
}
@media (min-width: 1024px) {
    .about-hero-inner { padding: 0 2.5rem; }
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(196, 214, 165, 0.12);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    color: var(--landing-accent, #c4d6a5);
    padding: .3rem 1rem;
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.about-hero-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--landing-ink, #f4f1ea);
    letter-spacing: -0.02em;
}
.about-hero-sub {
    font-size: 1.125rem;
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    max-width: 48rem;
    margin: 0 0 1rem;
    line-height: 1.6;
}
.about-hero-note {
    font-size: .875rem;
    color: var(--landing-accent, #c4d6a5);
    max-width: 42rem;
    margin: 0 0 .75rem;
    line-height: 1.6;
    opacity: 0.9;
}
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-start;
    margin-top: 1.25rem;
}
.about-hero-actions.center { justify-content: flex-start; }

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.15rem;
    border-radius: .55rem;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    cursor: pointer;
}
.about-btn--primary {
    background: var(--landing-btn, #1f6b45);
    color: #fff;
    border: 1px solid var(--landing-btn, #1f6b45);
}
.about-btn--primary:hover {
    background: var(--landing-btn-hover, #175536);
    border-color: var(--landing-btn-hover, #175536);
}
.about-btn--outline {
    background: transparent;
    color: var(--landing-ink, #f4f1ea);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
}
.about-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--landing-accent, #c4d6a5);
}

/* ── Container ── */
.about-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 3.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ── Typography ── */
.about-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-ink, #f4f1ea);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.about-h2.center { text-align: center; }
.about-h2.light { color: var(--landing-ink, #f4f1ea); }
.about-sub {
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    font-size: .95rem;
    margin: -.25rem 0 1rem;
}
.about-p {
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    line-height: 1.7;
    font-size: .95rem;
    margin: 0 0 .75rem;
}
.about-p.center { text-align: center; }
.about-strong {
    font-weight: 600;
    color: var(--landing-ink, #f4f1ea);
    margin: .5rem 0;
    line-height: 1.7;
    font-size: .95rem;
}
.about-footnote {
    font-size: .78rem;
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    margin-top: .5rem;
    line-height: 1.6;
    opacity: 0.85;
}
.about-muted {
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    text-align: center;
    margin: .25rem 0 0;
}
.about-muted.narrow { max-width: 42rem; margin: .25rem auto 0; }

.about-center-head { text-align: center; margin-bottom: 2rem; }

/* ── Icon badges ── */
.about-badge-sq {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .35);
    margin-bottom: 1rem;
}
.about-badge-sq.center { display: flex; margin-left: auto; margin-right: auto; }
.about-badge-sq.lg { width: 4rem; height: 4rem; }
.about-grad--teal,
.about-grad--blue,
.about-grad--indigo,
.about-grad--green,
.about-grad--purple,
.about-grad--sky,
.about-grad--amber,
.about-grad--cyan {
    background: linear-gradient(135deg, var(--landing-btn, #1f6b45), #254f38);
}
.about-badge-sq.glass {
    background: rgba(196, 214, 165, 0.12);
    color: var(--landing-accent, #c4d6a5);
    backdrop-filter: blur(4px);
}

/* ── Colored icon chips ── */
.about-ic {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-ic--green,
.about-ic--blue,
.about-ic--purple,
.about-ic--teal,
.about-ic--orange,
.about-ic--rose,
.about-ic--indigo,
.about-ic--amber,
.about-ic--sky,
.about-ic--cyan,
.about-ic--stone {
    background: rgba(31, 107, 69, 0.28);
    color: var(--landing-accent, #c4d6a5);
}

/* check icons */
.ab-check { flex-shrink: 0; margin-top: .15rem; }
.ab-check--green,
.ab-check--blue,
.ab-check--teal,
.ab-check--amber,
.ab-check--cyan { color: var(--landing-accent, #c4d6a5); }

/* ── Split ── */
.about-split--sky,
.about-split--teal {
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 2rem;
}
.about-split--dark {
    background: linear-gradient(120deg, #0c1610, #1f6b45);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 2rem;
    color: var(--landing-ink, #f4f1ea);
}
.about-split--dark .about-h2 { color: var(--landing-ink, #f4f1ea); }
.about-split--dark .about-p { color: var(--landing-muted, rgba(244, 241, 234, 0.72)); }

.about-split-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.about-split-cols.is-imgright .about-split-media { order: 2; }
.about-split-media {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 20px -8px rgba(0, 0, 0, .45);
    height: 20rem;
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
}
.about-split-media img { width: 100%; height: 100%; object-fit: cover; }

.about-bullets { list-style: none; margin: .25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.about-bullets li {
    display: flex;
    gap: .5rem;
    font-size: .9rem;
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    line-height: 1.5;
}
.about-bullets.sm li { font-size: .8rem; }

.about-callout {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(31, 107, 69, 0.35);
    color: var(--landing-accent, #c4d6a5);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* tile grid below split */
.about-tilegrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.about-tile {
    background: var(--landing-panel, #0c1610);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: .75rem;
    padding: 1rem;
    text-align: center;
}
.about-tile .about-ic { margin: 0 auto .5rem; }
.about-tile span {
    font-size: .78rem;
    font-weight: 500;
    color: var(--landing-ink, #f4f1ea);
}

/* chip grid */
.about-chipgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: 2rem;
}
.about-chipgrid.wide { max-width: 56rem; margin-left: auto; margin-right: auto; }
.about-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--landing-panel, #0c1610);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: .5rem;
    padding: .65rem .75rem;
}
.about-chip span {
    font-size: .78rem;
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
}

/* ── Card sections ── */
.about-cardsec { display: flex; justify-content: center; }
.about-card {
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 2rem;
    max-width: 56rem;
    width: 100%;
}
.about-card--indigo { border-color: rgba(196, 214, 165, 0.35); }
.about-card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.about-card-head .about-h2 { margin: 0; }
.about-card-ic {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-card-ic--amber,
.about-card-ic--indigo,
.about-card-ic--rose,
.about-card-ic--slate {
    background: rgba(31, 107, 69, 0.28);
    color: var(--landing-accent, #c4d6a5);
}

/* ── Icon cards grid ── */
.about-iconcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.about-iconcard {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: .75rem;
    padding: 1.25rem;
    transition: border-color .15s, transform .15s;
}
.about-iconcard:hover {
    border-color: rgba(196, 214, 165, 0.45);
    transform: translateY(-2px);
}
.about-iconcard p {
    margin: 0;
    font-size: .875rem;
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    line-height: 1.5;
    padding-top: .35rem;
}

/* ── Label tiles ── */
.about-labeltiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.about-labeltile {
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: .75rem;
    padding: 1.25rem;
    text-align: center;
    transition: border-color .15s, transform .15s;
}
.about-labeltile:hover {
    border-color: rgba(196, 214, 165, 0.45);
    transform: translateY(-2px);
}
.about-labeltile .about-ic { width: 3rem; height: 3rem; margin: 0 auto .75rem; }
.about-labeltile p {
    margin: 0;
    font-size: .875rem;
    font-weight: 600;
    color: var(--landing-ink, #f4f1ea);
}

/* ── Benefits ── */
.about-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.about-benefit {
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 1.5rem;
}
.about-benefit--green,
.about-benefit--blue,
.about-benefit--teal {
    border-color: rgba(196, 214, 165, 0.3);
}
.about-benefit .about-ic { width: 2.75rem; height: 2.75rem; margin-bottom: 1rem; }
.about-benefit h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--landing-ink, #f4f1ea);
    margin: 0 0 .75rem;
}

/* ── Steps ── */
.about-panel--teal {
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 2rem;
}
.about-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
}
.about-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    background: var(--landing-panel, #0c1610);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: .75rem;
    padding: 1rem;
}
.about-step-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: var(--landing-btn, #1f6b45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .875rem;
    box-shadow: 0 6px 10px -4px rgba(31, 107, 69, .5);
}
.about-step p {
    margin: 0;
    font-size: .75rem;
    font-weight: 500;
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    line-height: 1.35;
}

/* ── Banner (Conclusion) ── */
.about-banner {
    background: linear-gradient(135deg, var(--landing-btn, #1f6b45), #175536 55%, #0c1610);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--landing-ink, #f4f1ea);
}
.about-banner-p {
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    max-width: 48rem;
    margin: 0 auto 1rem;
    line-height: 1.7;
    font-size: .95rem;
}

/* ── CTA (Partner) ── */
.about-cta {
    background: linear-gradient(135deg, #0c1610, #1f6b45);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: var(--landing-ink, #f4f1ea);
}
.about-cta-sub {
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    font-size: .95rem;
}
.about-cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    max-width: 48rem;
    margin: 0 auto 2rem;
}
.about-cta-chip {
    background: rgba(196, 214, 165, 0.12);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    color: var(--landing-ink, #f4f1ea);
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* ── Contact ── */
.about-contact-card {
    background: var(--landing-panel-2, #13261c);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    border-radius: 1rem;
    padding: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.about-contact-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-ink, #f4f1ea);
    margin: 0 0 .25rem;
}
.about-contact-trading {
    color: var(--landing-muted, rgba(244, 241, 234, 0.72));
    font-size: .875rem;
    margin: 0 0 1rem;
}
.about-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.25rem;
}
.about-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(31, 107, 69, 0.35);
    color: var(--landing-accent, #c4d6a5);
    border: 1px solid var(--landing-border, rgba(229, 231, 235, 0.28));
    font-weight: 500;
    font-size: .875rem;
    padding: .55rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.about-contact-btn:hover {
    background: var(--landing-btn, #1f6b45);
    color: #fff;
    border-color: var(--landing-btn, #1f6b45);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-split-cols { grid-template-columns: 1fr; }
    .about-split-cols.is-imgright .about-split-media { order: 0; }
    .about-iconcards { grid-template-columns: repeat(2, 1fr); }
    .about-labeltiles { grid-template-columns: repeat(3, 1fr); }
    .about-benefits { grid-template-columns: 1fr; }
    .about-tilegrid { grid-template-columns: repeat(2, 1fr); }
    .about-chipgrid { grid-template-columns: repeat(2, 1fr); }
    .about-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .about-iconcards, .about-labeltiles, .about-tilegrid, .about-chipgrid, .about-steps { grid-template-columns: 1fr; }
    .about-split-media { height: 15rem; }
}
