:root {
    --bg: #f7fbff;
    --navy: #1e2b44;
    --accent: #5d8bff;
    --accent-soft: #dce6ff;
    --text: #222738;
    --muted: #6b7288;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Sora", "Inter", system-ui, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 2.5rem clamp(1rem, 4vw, 4rem) 4rem;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    background: var(--card);
    border-radius: 30px;
    padding: 2.8rem;
    box-shadow: 0 25px 60px rgba(30, 43, 68, 0.12);
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--muted);
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    margin: 1rem 0;
}

.hero__kpi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.hero__kpi div {
    background: var(--accent-soft);
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
}

.hero__kpi span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.section-heading {
    text-align: center;
    margin: 3rem 0 1.5rem;
}

.section-heading p {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    font-size: 0.75rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.stakeholders__grid,
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.stakeholder-card,
.team-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.6rem;
    border: 1px solid rgba(93, 139, 255, 0.2);
}

.stop-exec__list {
    display: grid;
    gap: 1rem;
}

.stop-card {
    background: var(--card);
    border-left: 6px solid var(--accent);
    padding: 1.2rem 1.6rem;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(30, 43, 68, 0.1);
    display: flex;
    gap: 1rem;
}

.stop-card span {
    font-weight: 700;
    color: var(--accent);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.testimonial {
    background: #fff;
    border-radius: 22px;
    padding: 1.6rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial span {
    display: block;
    margin-top: 0.8rem;
    color: var(--muted);
}

.cta {
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    font-size: 1.3rem;
}

.cta__actions a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--muted);
}
