/* =============================================================================
   Figtree Systems — About Us
   Scoped to .au-page. Uses the global --fg-* design tokens.
   ============================================================================= */

.au-page {
    font-family: 'Open Sans', sans-serif;
    color: var(--fg-text);
    line-height: 1.7;
}

.au-page section { position: relative; }

/* Shared inner wrapper ------------------------------------------------------- */
.au-inner {
    max-width: var(--fg-max-w);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
}

/* Buttons -------------------------------------------------------------------- */
.au-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    text-decoration: none;
    border-radius: var(--fg-radius);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.2;
    white-space: nowrap;
}

.au-btn--primary {
    padding: 0.75em 1.8em;
    background: var(--fg-green);
    color: #fff;
}
.au-btn--primary:hover,
.au-btn--primary:focus-visible {
    background: var(--fg-green-dark);
    color: #fff;
}

/* =============================================================================
   1. HERO
   ============================================================================= */
.au-hero {
    position: relative;
    background-color: var(--fg-green-deeper);
    background-size: cover;
    background-position: center 30%;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
}

.au-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(30, 61, 26, 0.90) 0%,
        rgba(30, 61, 26, 0.72) 55%,
        rgba(30, 61, 26, 0.30) 100%
    );
}

.au-hero__inner {
    position: relative;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
    width: 100%;
    text-align: center;
}

.au-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

/* =============================================================================
   2. WHO WE ARE
   ============================================================================= */
.au-who {
    padding: 4rem 0;
    background: #fff;
}

.au-who .au-inner {
    text-align: center;
}

.au-who h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fg-green-deeper);
    margin: 0 0 1.5rem;
}

.au-who p {
    margin: 0 auto 1.25rem;
    max-width: 760px;
}

/* =============================================================================
   3. WHY CLIENTS CHOOSE US
   ============================================================================= */
.au-why {
    padding: 4rem 0;
    background-color: var(--fg-green-pale);
}

.au-why .au-inner {
    text-align: center;
}

.au-why h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fg-green-deeper);
    margin: 0 0 1.25rem;
}

.au-why__intro {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.au-why__photo {
    display: block;
    max-width: 634px;
    width: 100%;
    height: auto;
    border-radius: var(--fg-radius-lg);
    margin: 0 auto 2.5rem;
}

.au-why__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.au-why__col h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--fg-green-dark);
    margin: 0 0 0.6rem;
}

.au-why__col p {
    margin: 0;
}

@media (max-width: 900px) {
    .au-why__cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =============================================================================
   4. TESTIMONIALS
   ============================================================================= */
.au-testimonials {
    padding: 4rem 0;
    background-color: var(--fg-green-deeper);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.au-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 47, 36, 0.55);
}

.au-testimonials .au-inner {
    position: relative;
}

.au-testimonials h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin: 0 auto 2rem;
    max-width: 760px;
    text-align: center;
}

.au-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
}

.au-quote {
    padding: 1.5rem;
    border-radius: 22px;
    background: color-mix(in srgb, var(--fg-surface-strong) 76%, transparent);
    border: 1px solid var(--fg-border);
    box-shadow: var(--fg-shadow-soft);
}

.au-quote p {
    margin: 0 0 1rem;
    color: var(--fg-green-900);
    font-size: 1rem;
    line-height: 1.6;
}

.au-quote strong {
    display: block;
    color: var(--fg-green-900);
    font-size: 0.95rem;
}

.au-quote__role {
    display: block;
    font-size: 0.85rem;
    color: var(--fg-green-700);
    margin-top: 2px;
    opacity: 0.8;
}

.au-testimonials__cta {
    margin-top: 2.5rem;
    text-align: center;
}

@media (max-width: 600px) {
    .au-quote-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   5. STAFF SLIDESHOW
   ============================================================================= */
.au-staff {
    padding: 4rem 0;
    background: #fff;
}

.au-staff h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fg-green-deeper);
    margin: 0 0 2.5rem;
    text-align: center;
}

.au-slideshow {
    position: relative;
    max-width: 640px;
    margin-inline: auto;
}

.au-slideshow__viewport {
    position: relative;
}

.au-slideshow__slide {
    display: none;
    text-align: center;
}

.au-slideshow__slide--active {
    display: block;
    animation: au-fade 0.4s ease;
}

@keyframes au-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.au-slideshow__photo {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
}

.au-slideshow__name {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.25rem;
    color: var(--fg-green-deeper);
    margin: 0 0 0.35rem;
}

.au-slideshow__title {
    font-weight: 600;
    color: var(--fg-green-dark);
    margin: 0 0 1rem;
}

.au-slideshow__bio {
    max-width: 540px;
    margin: 0 auto;
    color: var(--fg-text);
}

button.au-slideshow__arrow {
    position: absolute !important;
    top: 90px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 2px solid #44803c !important;
    background-color: #eef6ec !important;
    color: #2d5a27 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    box-shadow: 0 12px 28px rgba(13,47,36,.08);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    z-index: 5;
}

button.au-slideshow__arrow svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    flex-shrink: 0;
}

button.au-slideshow__arrow:hover,
button.au-slideshow__arrow:focus-visible {
    background-color: #44803c !important;
    color: #fff !important;
    border-color: #2d5a27 !important;
}

.au-slideshow__arrow--prev { left: -10px; }
.au-slideshow__arrow--next { right: -10px; }

.au-slideshow__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.au-slideshow__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--fg-border);
    cursor: pointer;
    padding: 0;
}

.au-slideshow__dot--active {
    background: var(--fg-green);
}

@media (max-width: 600px) {
    .au-slideshow__arrow {
        top: 60px;
    }
    .au-slideshow__arrow--prev { left: -4px; }
    .au-slideshow__arrow--next { right: -4px; }
}

/* =============================================================================
   6. BACKED BY INDUSTRY-LEADING SOFTWARE GROUPS
   ============================================================================= */
.au-backed {
    padding: 4rem 0;
    background: var(--fg-green-pale);
    text-align: center;
}

.au-backed h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fg-green-deeper);
    margin: 0 0 1.25rem;
}

.au-backed p {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.au-backed__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.au-backed__logos img {
    height: 64px;
    width: auto;
}

/* =============================================================================
   7. FAQ
   ============================================================================= */
.au-faq {
    padding: 4rem 0;
    background: #fff;
}

.au-faq__heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fg-green-deeper);
    margin: 0 0 0.5rem;
}

.au-faq__sub {
    margin: 0 0 2rem;
    color: var(--fg-green-700);
}

.au-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.au-faq__item {
    border: 1px solid var(--fg-border);
    border-radius: var(--fg-radius-md);
    padding: 1rem 1.25rem;
}

.au-faq__question {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: var(--fg-green-deeper);
}

.au-faq__answer p {
    margin: 0.75rem 0 0;
}
