:root {
    --lavender: #f7f4ff;
    --lavender-dark: #d8d0f0;
    --charcoal: #1a1f2b;
    --gold: #f0b324;
    --text: #1f2230;
    --muted: #6d6f82;
    --card: #ffffff;
    --shadow: 0 30px 80px rgba(26, 31, 43, 0.12);
}

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

body {
    background: var(--lavender);
    color: var(--text);
    line-height: 1.7;
    padding: 2rem clamp(1.2rem, 4vw, 5rem) 4rem;
}

.hero {
    background: linear-gradient(135deg, #fff, #eae3ff);
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

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

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

.hero__badge {
    background: var(--charcoal);
    color: #fff;
    border-radius: 24px;
    padding: 1.5rem 2rem;
    min-width: 250px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
}

.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.6rem);
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.case-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.case-card span {
    color: var(--gold);
    font-weight: 600;
}

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

.priority-card {
    background: var(--card);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--lavender-dark);
}

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

.team-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.team-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-card__role {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.risk__bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.risk-bar {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.risk-bar__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.risk-bar__track {
    height: 8px;
    background: var(--lavender-dark);
    border-radius: 999px;
}

.risk-bar__fill {
    height: 100%;
    background: var(--gold);
    border-radius: inherit;
}

.cta {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

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

.cta__actions a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
}

.cta__map {
    text-align: right;
    color: var(--muted);
}

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