:root {
    --cream: #fff9f1;
    --navy: #1d2033;
    --accent: #ff8c42;
    --text: #2b2f44;
    --muted: #7b7f92;
    --card: #ffffff;
}

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

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

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

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

.hero__cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero__cta span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero__card {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.hero__card a {
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
}

.btn {
    background: var(--navy);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
}

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

.service-card {
    background: var(--card);
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card span {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

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

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

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

.stop-item {
    background: var(--card);
    border-radius: 20px;
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

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

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.team-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

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

.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    border: 1px dashed rgba(0,0,0,0.1);
}

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

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