/* ═══════════════════════════════════════════════════════════════
   ASAR CARE — About Us Page Stylesheet
   Sections: Hero · About Text · Founder's Note · Mission/Vision ·
             Stats Bento · Ecosystem · Why Choose · CTA Banner ·
             Testimonials · Accreditations
   ═══════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   0. DESIGN TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
    --au-primary:    #004750;
    --au-navy:       #031B2B;
    --au-gold:       #D5992D;
    --au-cream:      #F5F0E8;
    --au-bg:         #F9F6F0;
    --au-white:      #FFFFFF;
    --au-text:       #1A1A1A;
    --au-muted:      #5C6B7A;
    --au-border:     rgba(0,71,80,0.12);
    --au-radius:     32px;
    --au-radius-sm:  16px;
    --au-transition: 0.28s ease;
    --font-body:     'Satoshi', 'Inter', 'Poppins', sans-serif;
}

.asar-au-v2-page * { box-sizing: border-box; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED: Section pill badge
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,71,80,0.08);
    color: var(--au-primary);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    border: 1.5px solid rgba(0,71,80,0.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-hero-section {
    background: #ffffff;
    padding: 17px 24px;
    width: 100%;
}

.au-hero-card {
    position: relative;
    width: 100%;
    max-width: 1794px;
    height: 1027px;
    margin: 0 auto;
    border-radius: 48px; /* High fidelity curved border */
    overflow: hidden;
    background: var(--au-primary);
    box-shadow: 0 20px 80px rgba(3, 27, 43, 0.12);
}

.au-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1.0; /* Full visibility for the figma asset */
    z-index: 0;
}

.au-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,71,80,0.5) 0%, rgba(3,27,43,0.4) 100%); /* Much lighter overlay for readability */
    z-index: 1;
}

.au-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 240px 93px 80px; /* Aligned vertically and horizontally */
}

.au-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

.au-hero-content {
    max-width: 1105px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.au-hero-title {
    font-family: var(--font-body);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.au-hero-title-line1 {
    font-size: clamp(2rem, 5.25vw, 5.25rem); /* Up to 84px in Figma */
    display: block;
}

.au-hero-title-line2 {
    font-size: clamp(1.5rem, 3vw, 3rem); /* Up to 48px in Figma */
    display: block;
    color: var(--au-gold);
}

.au-hero-desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.25vw, 1.125rem); /* 18px */
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin: 0;
    max-width: 903px; /* Exact Figma w-[903px] */
}

.au-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.au-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--au-gold);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem; /* 18px */
    height: 72px; /* Figma 72px */
    padding: 0 48px;
    border-radius: 16px; /* Figma Rounded */
    transition: all var(--au-transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.au-hero-btn-primary:hover {
    background: #c0871f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(213,153,45,0.35);
}

.au-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem; /* 18px */
    height: 72px; /* Figma 72px */
    padding: 0 48px;
    border-radius: 16px; /* Figma Rounded */
    border: 2px solid rgba(255,255,255,0.5);
    transition: all var(--au-transition);
    text-decoration: none;
    cursor: pointer;
}
.au-hero-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. ABOUT TEXT SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-about-section {
    background: var(--au-white);
    padding: 90px 24px 100px; /* Precise top gap relative to hero bottom */
}

.au-about-inner {
    width: 100%;
    max-width: 1507px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* Figma Gap */
    text-align: center;
}

/* Custom styling for the Who We Are badge inside this section */
.au-about-section .au-pill {
    background: rgba(213, 153, 45, 0.1);
    color: var(--au-gold);
    border: 1.5px solid var(--au-gold);
    font-size: clamp(1rem, 1.4vw, 1.4375rem); /* 23px */
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 100px;
}

.au-about-title {
    font-family: var(--font-body);
    font-size: clamp(2.25rem, 4vw, 4rem); /* 64px in Figma */
    font-weight: 700;
    color: var(--au-navy);
    line-height: 1.25;
    margin: 0;
    text-align: center;
    width: 100%;
}

.au-about-desc {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 1.75vw, 1.75rem); /* 28px in Figma */
    color: var(--au-text); /* Dark grey/black for high contrast readability */
    line-height: 1.65;
    max-width: 100%;
    margin: 0;
    text-align: justify;
    width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. FOUNDER'S NOTE SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-founder-section {
    background: var(--au-bg);
    padding: 120px 24px;
}

.au-founder-inner {
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: stretch;
    min-height: 924px;
}

.au-founder-left {
    flex: 0 0 32.15%; /* 576/1792 */
    border-radius: 32px;
    overflow: hidden;
    display: flex; /* Fix flexbox height calculation quirk */
}

.au-founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 32px;
}

.au-founder-right {
    flex: 1;
    background: linear-gradient(163.54deg, #d5992d 9.3%, #004750 71.3%, #031b2b 97.9%); /* Figma 3-color gradient */
    border-radius: 32px;
    padding: 40px; /* Figma 40px padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.au-founder-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 4rem); /* 64px in Figma */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1.15;
}

.au-founder-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.5vw, 2.75rem); /* 44px in Figma */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.au-founder-body {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 1.4vw, 1.4375rem); /* 23px in Figma */
    color: #ffffff;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.au-founder-body p {
    margin: 0;
}

.au-founder-list {
    margin: 0;
    padding-left: 24px;
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.au-founder-list li {
    font-size: clamp(1.125rem, 1.4vw, 1.4375rem);
    line-height: 1.45;
}

.au-founder-signoff {
    font-weight: 700;
    margin-top: 32px;
}

.au-founder-name {
    font-weight: 700;
    color: #ffffff; /* White to match Figma */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. MISSION & VISION SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-mv-section {
    background: var(--au-white);
    padding: 120px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px; /* Reduced gap between cards */
}

.au-mv-row {
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    height: 360px; /* Reduced to 360px for a much more compact, sleek row design */
    border-radius: 32px; /* Smooth rounded block */
    overflow: hidden; /* Clips image and content outer corners */
    box-shadow: 0 20px 50px rgba(3, 27, 43, 0.08);
}

.au-mv-row--reverse {
    flex-direction: row-reverse;
}

.au-mv-image {
    flex: 0 0 32.15%; /* 576px / 1792px */
    overflow: hidden;
    position: relative;
}

.au-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.au-mv-content {
    flex: 1;
    background: var(--au-primary);
    padding: 30px 50px; /* Compact padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Stops pills from stretching edge-to-edge */
    gap: 20px;
    position: relative;
}

.au-mv-row--reverse .au-mv-content {
    background: var(--au-navy);
}

.au-mv-content .au-pill {
    background: rgba(213, 153, 45, 0.1);
    color: var(--au-gold);
    border: 1.5px solid var(--au-gold);
    font-size: clamp(0.9rem, 1.2vw, 1.25rem); /* ~20px */
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
}

.au-mv-title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 2.5vw, 2.75rem); /* 44px in Figma */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.au-mv-desc {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 1.4vw, 1.4375rem); /* 23px in Figma */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. STATS BENTO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-stats-section {
    background: var(--au-bg);
    padding: 100px 24px;
}

.au-stats-inner {
    width: 90%;
    max-width: 1796px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.au-stats-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.au-stats-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--au-text);
    margin: 0;
    line-height: 1.25;
}

.au-stats-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--au-muted);
    line-height: 1.75;
    max-width: 900px;
    margin: 0;
}

/* Bento Grid */
.au-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    grid-template-areas:
        "doctors clinics center hospitals"
        "countries response center diagnostics";
}

.au-bento-card {
    background: var(--au-white);
    border-radius: var(--au-radius-sm);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 4px 24px rgba(0,71,80,0.06);
    border: 1px solid var(--au-border);
    transition: transform var(--au-transition), box-shadow var(--au-transition);
    min-height: 160px;
}
.au-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,71,80,0.12);
}

.au-bento-card--center {
    grid-area: center;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--au-primary), var(--au-navy));
    color: #ffffff;
    min-height: 340px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.au-bento-card--doctors    { grid-area: doctors; }
.au-bento-card--clinics    { grid-area: clinics; }
.au-bento-card--hospitals  { grid-area: hospitals; }
.au-bento-card--countries  { grid-area: countries; }
.au-bento-card--response   { grid-area: response; }
.au-bento-card--diagnostics { grid-area: diagnostics; }

.au-bento-number {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--au-primary);
    line-height: 1;
    margin: 0;
}

.au-bento-card--center .au-bento-number {
    font-size: clamp(3rem, 5vw, 5rem);
    color: #ffffff;
}

.au-bento-label {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 600;
    color: var(--au-muted);
    margin: 0;
    line-height: 1.4;
}

.au-bento-card--center .au-bento-label {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. ECOSYSTEM SECTION
   (Reuses DH Ecosystem card styles, new wrapper)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-ecosystem-section {
    background: var(--au-white);
    padding: 100px 24px;
}

.au-ecosystem-inner {
    width: 90%;
    max-width: 1796px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.au-ecosystem-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.au-ecosystem-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--au-text);
    margin: 0;
    line-height: 1.25;
    max-width: 850px;
}

.au-ecosystem-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--au-muted);
    line-height: 1.75;
    max-width: 1200px;
    margin: 0;
}

.au-ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
}

.au-eco-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.au-eco-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--au-radius);
    overflow: hidden;
    background: linear-gradient(135deg, #004750, #031B2B);
}

.au-eco-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.au-eco-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 73px;
    height: 73px;
    background: var(--au-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all var(--au-transition);
    cursor: pointer;
    text-decoration: none;
}
.au-eco-card-arrow:hover {
    background: #ffffff;
    color: var(--au-primary);
    transform: scale(1.08);
}
.au-eco-card-arrow svg {
    width: 28px;
    height: 28px;
}

.au-eco-card-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--au-text);
    margin: 0;
}

.au-eco-card-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--au-muted);
    margin: 0;
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. WHY CHOOSE SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-why-section {
    background: var(--au-bg);
    padding: 100px 24px;
}

.au-why-inner {
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.au-why-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Stops badges from stretching */
    gap: 16px;
    max-width: 900px;
}

.au-why-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 700;
    color: var(--au-text);
    margin: 0;
    line-height: 1.25;
}

.au-why-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--au-muted);
    line-height: 1.75;
    margin: 0;
    max-width: 1488px;
}

.au-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.au-why-card {
    background: var(--au-white);
    border-radius: var(--au-radius); /* Matches premium rounded corner design */
    padding: 32px;
    position: relative;
    border: 1px solid var(--au-border);
    transition: all var(--au-transition);
    box-shadow: 0 4px 16px rgba(0,71,80,0.05);
}
.au-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,71,80,0.1);
}

.au-why-card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: rgba(0,71,80,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.au-why-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--au-primary);
}
.au-why-card-icon i {
    font-size: 22px;
    color: var(--au-primary);
}

.au-why-card-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--au-text);
    margin: 0 0 12px;
    line-height: 1.3;
    padding-right: 64px;
}

.au-why-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--au-muted);
    line-height: 1.7;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. CTA BANNER SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-cta-section {
    background: var(--au-white); /* White page background around card */
    padding: 80px 24px;
}

.au-cta-inner {
    width: 100%;
    max-width: 1792px; /* Standardize with other page sections */
    margin: 0 auto;
    height: 266px; /* Exact Figma height */
    position: relative;
    background: transparent;
}

.au-cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 71, 80, 0.35) 0%, rgba(3, 27, 43, 0.75) 100%), url('../images/banner-not-sure-bg.png') no-repeat center center / 100% 100%;
    z-index: 0;
    
    /* CSS Mask to clip background to the exact cutout and rounded shape of the PNG */
    -webkit-mask: url('../images/banner-not-sure-bg.png') no-repeat center center / 100% 100%;
    mask: url('../images/banner-not-sure-bg.png') no-repeat center center / 100% 100%;
}

.au-cta-text {
    position: absolute;
    left: 92px;
    top: 50%;
    transform: translateY(-50%);
    max-width: calc(100% - 480px); /* Leave room for the button */
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.au-cta-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 2.5vw, 3.25rem); /* Up to 52px */
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.au-cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.5rem); /* Up to 24px */
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.45;
}

.au-cta-btn {
    position: absolute;
    right: 24px; /* Shifted right by 20px more (44px -> 24px) */
    bottom: 8px; /* Positioned perfectly within the cutout vertically */
    top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--au-gold);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    padding: 18px 36px;
    border-radius: 16px;
    transition: all var(--au-transition);
    white-space: nowrap;
    text-decoration: none;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(213, 153, 45, 0.3);
}

.au-cta-btn:hover {
    background: #ffffff;
    color: var(--au-primary);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.au-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--au-transition);
}

.au-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. TESTIMONIALS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-testimonials-section {
    background: var(--au-white);
    padding: 120px 0;
}

.au-test-header {
    width: 100%;
    max-width: 1792px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    padding: 0 24px;
}

.au-test-title {
    font-family: var(--font-body);
    font-size: 64px; /* Roca One / Satoshi Bold - 64px */
    font-weight: 700;
    color: var(--au-text);
    margin: 0;
    line-height: 1.2;
}

.au-test-desc {
    font-family: var(--font-body);
    font-size: 28px; /* 28px Satoshi */
    color: var(--au-muted);
    line-height: 1.6;
    max-width: 1377px;
    margin: 0;
}

.au-test-track-wrap {
    overflow: hidden;
    padding: 24px 0;
}

.au-test-track {
    display: flex;
    gap: 44px; /* Figma gap: 44px */
    padding: 0 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
}
.au-test-track::-webkit-scrollbar { display: none; }

.au-test-card {
    flex: 0 0 403px;
    scroll-snap-align: start;
    background: #fff8f0; /* Figma exact cream background */
    border: none;
    border-radius: 16px; /* Figma exact border-radius */
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Figma gap: 12px */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Figma drop-shadow */
    transition: transform var(--au-transition), box-shadow var(--au-transition);
}
.au-test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.au-test-reviewer {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Figma gap between avatar/name row and stars row */
}

.au-test-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 19px; /* Figma gap: 19px */
}

.au-test-avatar {
    width: 73px; /* Figma avatar size: 73px */
    height: 73px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--au-primary), var(--au-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}
.au-test-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.au-test-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.au-test-country {
    font-family: var(--font-body);
    font-size: 18px; /* Figma country size: 18px */
    color: var(--au-text);
    font-weight: 400;
}

.au-test-name {
    font-family: var(--font-body);
    font-size: 30px; /* Figma name size: 30px */
    font-weight: 700;
    color: var(--au-text);
    line-height: 1.15;
}

.au-test-stars {
    display: flex;
    align-items: center;
    gap: 16px; /* Figma gap: 16px */
}
.au-test-stars-row {
    display: flex;
    align-items: center;
}
.au-test-stars svg {
    width: 32px; /* Figma star size: 32px */
    height: 32px;
    color: var(--au-gold);
    fill: var(--au-gold);
}
.au-test-rating {
    font-family: var(--font-body);
    font-size: 18px; /* Figma rating size: 18px */
    color: var(--au-text);
    font-weight: 400;
}

.au-test-quote {
    font-family: var(--font-body);
    font-size: 23px; /* Figma quote size: 23px */
    color: var(--au-text);
    line-height: 1.5;
    margin: 0;
    font-style: normal; /* Normal style, not italic in Figma */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. ACCREDITATIONS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-accred-section {
    background: var(--au-white);
    padding: 120px 24px;
}

.au-accred-inner {
    width: 100%;
    max-width: 1796px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.au-accred-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 1486px;
    margin: 0 auto;
}

.au-accred-badge {
    background: rgba(213, 153, 45, 0.1);
    border: 1px solid var(--au-gold);
    color: var(--au-gold);
}

.au-accred-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.5vw, 64px);
    font-weight: 700;
    color: var(--au-navy);
    margin: 0;
    line-height: 1.15;
    white-space: nowrap;
}

.au-accred-desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 28px);
    color: #333;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0;
}

.au-accred-cards {
    display: grid;
    grid-template-columns: repeat(4, 425px);
    gap: 32px;
    align-items: start;
    justify-content: center;
}

/* ── Individual card column ── */
.au-accred-card {
    display: flex;
    flex-direction: column;
    gap: 31px;          /* Figma gap between image and text */
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    align-items: center;
}

/* ── Wrapper that contains the masked card + arrow (acts as positioning context) ── */
.au-accred-card-image-wrap {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* ── The cream-coloured image card ── */
.au-accred-card-image {
    position: relative;
    width: 100%;
    height: 397px;      /* Figma exact height */
    background: #fff8f0; /* Cream — Figma exact background */
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: transform var(--au-transition), box-shadow var(--au-transition);

    /* CSS mask cutout at bottom-right for the arrow circle */
    -webkit-mask-image: radial-gradient(circle 46px at calc(100% - 36.5px) calc(100% - 36.5px), transparent 44px, black 46px);
    mask-image: radial-gradient(circle 46px at calc(100% - 36.5px) calc(100% - 36.5px), transparent 44px, black 46px);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.au-accred-card:hover .au-accred-card-image {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* ── Logo image — full colour, NOT inverted ── */
.au-accred-card-logo {
    width: 70%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    /* NO filter — show the actual coloured logo */
    opacity: 1;
    transition: transform var(--au-transition);
}

.au-accred-card:hover .au-accred-card-logo {
    transform: scale(1.04);
}

/* ── Gold circular arrow button at bottom-right cutout ── */
.au-accred-card-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 73px;
    height: 73px;
    background: #031B2B;   /* Dark navy — matches Figma arrow circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background var(--au-transition), transform var(--au-transition);
    text-decoration: none;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.au-accred-card-arrow:hover {
    background: var(--au-gold);
    transform: scale(1.08);
}

.au-accred-card-arrow svg {
    width: 24px;
    height: 24px;
}

/* ── Text block below the card ── */
.au-accred-card-body {
    background: transparent;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.au-accred-card-name {
    font-family: var(--font-body);
    font-size: 30px;    /* Figma size */
    font-weight: 700;
    color: var(--au-text);
    margin: 0;
    line-height: 1.25;
}

.au-accred-card-desc {
    font-family: var(--font-body);
    font-size: 24px;    /* Figma size */
    color: var(--au-muted);
    line-height: 1.55;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1820px) {
    .au-accred-cards { grid-template-columns: repeat(4, 1fr); }
    .au-accred-title { white-space: normal; }
}

@media (max-width: 1200px) {
    .au-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "center center"
            "doctors clinics"
            "hospitals countries"
            "response diagnostics";
    }
    .au-bento-card--center { grid-row: auto; min-height: 200px; }
    .au-ecosystem-cards { grid-template-columns: repeat(2, 1fr); }
    .au-accred-cards { grid-template-columns: repeat(2, 1fr); }
    .au-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .au-founder-inner { flex-direction: column; height: auto; min-height: auto; }
    .au-founder-left { flex: 0 0 auto; height: 400px; border-radius: var(--au-radius); }
    .au-founder-right { padding: 40px; }
    .au-mv-row, .au-mv-row--reverse { flex-direction: column; }
    .au-mv-image { flex: 0 0 260px; }
    .au-cta-inner { flex-direction: column; text-align: center; padding: 48px 32px; }
    .au-test-card { flex: 0 0 320px; }
    .au-why-grid { grid-template-columns: 1fr; }
    .au-ecosystem-cards { grid-template-columns: 1fr; }
    .au-accred-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .au-hero-section { padding: 80px 16px 60px; min-height: auto; }
    .au-hero-btns { flex-direction: column; }
    .au-hero-btn-primary, .au-hero-btn-secondary { text-align: center; justify-content: center; }
    .au-founder-right { padding: 28px 24px; }
    .au-cta-inner { padding: 40px 24px; border-radius: 24px; }
    .au-bento-grid { grid-template-columns: 1fr; grid-template-areas: unset; }
    .au-bento-card--center { grid-row: auto; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1.1 SCOOP CUTOUT & SCROLL DOWN BUTTON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.au-hero-scoop {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-top-right-radius: 55px;
    z-index: 10;
}
.au-hero-scoop::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 110px;
    left: 0;
    background: radial-gradient(circle at top right, transparent 30px, var(--au-primary) 30px);
    pointer-events: none;
}
.au-hero-scoop::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 0;
    left: 110px;
    background: radial-gradient(circle at top right, transparent 30px, var(--au-primary) 30px);
    pointer-events: none;
}
.au-scroll-down-btn {
    position: absolute;
    left: 8px;
    bottom: 8px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--au-primary);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--au-primary);
    transition: all var(--au-transition);
    cursor: pointer;
}
.au-scroll-down-btn:hover {
    background: var(--au-primary);
    color: #ffffff;
    transform: scale(1.05);
}
.au-scroll-down-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 900px) {
    .au-hero-scoop { display: none; } /* Hide cutout on smaller viewports */
}

/* ──────────────────────── About Us Ecosystem Overrides ──────────────────────── */
.au-ecosystem-section .hv3-ecosystem__card {
    background: transparent;
    box-shadow: none;
}

.au-ecosystem-section .hv3-ecosystem__card .hv3-card-arrow {
    background-color: var(--au-gold);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(213, 153, 45, 0.3);
}

.au-ecosystem-section .hv3-ecosystem__card:hover .hv3-card-arrow {
    background-color: #ffffff;
    color: var(--au-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.au-ecosystem-section .hv3-ecosystem__card-title {
    color: var(--au-navy);
    font-family: var(--font-body);
    font-weight: 700;
}

.au-ecosystem-section .hv3-ecosystem__card-subtitle {
    color: var(--au-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

/* Fix spacing and centering */
.au-ecosystem-section {
    padding: 120px 24px;
    background: var(--au-white);
}

.au-ecosystem-section .hv3-container {
    max-width: 1792px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.au-ecosystem-section .hv3-ecosystem__header {
    margin-bottom: 64px;
    padding: 0;
}

.au-ecosystem-section .hv3-ecosystem__heading {
    font-family: var(--font-body);
    color: var(--au-navy);
    margin-top: 16px;
}
