:root {
    --bg: #F9F2E8;
    --card: #fff;
    --ink: #2a2a2a;
    --muted: #6b7280;
    --ring: #aac2cf;
    --accent: #aac2cf;
    --accent-ink: #f4f5ed;
    --radius: 18px;
    --radius-pill: 999px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

/* --- generic card --- */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
}

/* --- tagline text --- */
.services-tagline {
    margin: 0 0 .75rem 0;
}

.eyebrow {
    margin: 0;
    line-height: 1.3;
}

.eyebrow.en {
    font-weight: 500;
}

.eyebrow.es {
    font-size: .9rem;
    color: var(--muted);
    font-style: italic;
    margin-top: .2rem;
}

/* --- hero logo --- */
.hero-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform .18s ease, filter .18s ease;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .12));
}

.hero-logo:hover {
    transform: translateY(-2px) scale(1.01);
    filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .14));
}

.hero-logo::after {
    content: "";
    position: absolute;
    inset: -14% -18%;
    z-index: -1;
    border-radius: 28px;
    background:
        radial-gradient(60% 60% at 50% 40%, rgba(199, 118, 89, .18), transparent 60%),
        radial-gradient(80% 80% at 30% 70%, rgba(170, 194, 207, .25), transparent 65%),
        #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

/* --- hero layout --- */
.card.hero {
    display: grid;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 820px) {
    .card.hero {
        grid-template-columns: 320px 1fr;
        /* logo | text */
        text-align: left;
    }
}

/* --- hero copy --- */
.hero-headline {
    font-size: clamp(1.4rem, 1.1vw + 1.2rem, 2rem);
    margin: 0 0 .25rem;
    font-weight: 700;
}

.hero-sub {
    color: var(--muted);
    margin: 0 0 .75rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1rem;
    padding: 0;
    margin: .75rem 0 0;
    list-style: none;
    color: #475569;
}

.hero-points li::before {
    content: "✓ ";
    color: var(--accent);
    font-weight: 700;
}

/* --- buttons --- */
.btn {
    appearance: none;
    border: 0;
    padding: .9rem 1.2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    transition: transform .06s, box-shadow .18s;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 8px 24px rgba(199, 118, 89, .28);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: #374151;
    border: 1.5px solid #d8dde3;
}

.btn-outline:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* --- button group --- */
.hero-ctas {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}