/* PROCESS — "Ready to reignite your marketing" + 3 numbered cards */

.process {
    padding: var(--section-py-lg) 0 calc(var(--section-py-lg) - 20px);
    background: rgba(128, 144, 255, 0.12);
}

.process-container { max-width: 1100px; }

/* Heading */
.process-header { text-align: center; margin-bottom: 28px; }

.process-heading {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.1rem, 3.6vw, 3.1rem);
    line-height: 1.18;
    letter-spacing: -0.012em;
    color: var(--clr-navy);
    margin: 0 auto;
}
.process-heading .line { display: block; white-space: nowrap; }

/* Brushstroke overlays — only the highlighted phrase is bolded (500, per brand) */
.process-heading .fx {
    color: var(--clr-navy);
    font-weight: 500;
    padding: 0 0.05em;
}
.process-heading .fx::before { z-index: -1; }
.process-heading .fx-reignite::before {
    background-image: url("../assets/images/reignite-effect.png");
    height: 0.45em;
    bottom: -0.04em;
    left: -0.04em;
    width: 104%;
}
.process-heading .fx-marketing::before {
    background-image: url("../assets/images/marketing-effect.png");
    height: 0.45em;
    bottom: -0.04em;
    left: -0.04em;
    width: 104%;
}

/* Eyebrow above cards */
.process-eyebrow {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--clr-navy);
    margin: 56px 0 28px;
}

/* Cards */
.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}

.p-card {
    position: relative;
    background: var(--clr-greige);
    border: 1px solid var(--clr-navy);
    border-radius: 18px;
    padding: 26px 26px 56px;
    color: var(--clr-navy);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.p-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-navy);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.p-num {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.p-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-top: 14px;
}

.p-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--clr-navy);
    letter-spacing: 0.4px;
}
.p-card em {
    font-style: italic;
}

/* Color variants — only the number + label tint, card bg stays greige */
.p-card--red .p-num,
.p-card--red .p-label    { color: var(--clr-red); }
.p-card--blue .p-num,
.p-card--blue .p-label   { color: var(--clr-blue); }
.p-card--purple .p-num,
.p-card--purple .p-label { color: #9b94e0; }

/* Decorative shape bottom-right */
.p-shape {
    position: absolute;
    bottom: 18px;
    right: 22px;
    pointer-events: none;
}
/* Red filled circle (CSS) */
.p-shape--circle {
    width: 16px;
    height: 16px;
    background: var(--clr-red);
    border-radius: 50%;
}
/* Half-circle and triangle use brand asset PNGs */
.p-shape--half     { width: 18px; height: auto; }
.p-shape--triangle { width: 18px; height: auto; }

/* CTA */
.process-cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .process { padding: 72px 0 60px; }
    .process-container { padding: 0 24px; }
    .process-heading { font-size: clamp(1.9rem, 6.5vw, 2.8rem); margin-bottom: 32px; }
    .process-cards { grid-template-columns: 1fr; gap: 16px; }
    .p-card { padding: 28px 24px; }
    .p-num { font-size: clamp(2.6rem, 10vw, 3.4rem); }
}

@media (max-width: 480px) {
    .process { padding: 56px 0 48px; }
    .process-container { padding: 0 20px; }
    .process-heading { font-size: clamp(1.7rem, 8vw, 2.3rem); }
    .p-card { padding: 24px 22px; border-radius: 18px; }
    .p-num { font-size: clamp(2.2rem, 12vw, 2.8rem); }
    .p-card-body { font-size: 0.92rem; }
}
