/* ============================================================
   WHAT WE FIX
============================================================ */
#fix {
    padding: var(--section-pad) 0;
    background: var(--wash);
}

.fix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: min(1320px, calc(100vw - 48px));
    margin-left: 50%;
    transform: translateX(-50%);
}

.fix-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}
.fix-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 18px 44px rgba(0,0,0,0.09);
}

.fix-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    min-height: 62px;  /* reserves 2 title lines so bodies align across cards */
}

.fix-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fix-head h3 {
    margin-bottom: 0;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fix-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.fix-bullets li {
    font-size: 0.95rem;
    color: var(--midgrey);
    line-height: 1.65;
}

/* a key phrase in each bullet carries the card's accent colour */
.fix-bullets em.key {
    font-style: normal;
    font-weight: 600;
}
.fix-card.card-green  em.key { color: #059669; }
.fix-card.card-blue   em.key { color: #2563eb; }
.fix-card.card-violet em.key { color: #7c3aed; }

.fix-footer {
    margin-top: 48px;
    text-align: center;
}

.fix-footer p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--base);
    margin-bottom: 20px;
}


/* ============================================================
   ABOUT
============================================================ */
#about {
    padding: var(--section-pad) 0;
    background: var(--wash);
}

#about h2 em.hl {
    font-style: normal;
    color: #059669;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--whitegrey);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
}

.about-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.about-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--green-dark);
    background: var(--green-10);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* deter casual saving: no right-click "Save image", no drag, no select */
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.about-card h3 { margin-bottom: 3px; }

.about-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--midgrey);
}

.about-role em.hl {
    font-style: normal;
    color: #059669;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--midgrey);
    line-height: 1.7;
}

/* ============================================================
   FINAL CTA
============================================================ */
#contact {
    padding: var(--section-pad) 0;
    background: var(--white);
    text-align: center;
}

.cta-section-inner {
    max-width: 640px;
    margin: 0 auto;
}

#contact h2 { margin-bottom: 18px; }

.cta-subhead {
    font-size: 1.1rem;
    color: var(--midgrey);
    margin-bottom: 38px;
    line-height: 1.68;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 17px 38px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--green);
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}

.cta-btn-large:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16,185,129,0.28);
}

.cta-trust {
    margin-top: 18px;
    font-size: 0.83rem;
    color: var(--lightgrey);
}
