/* ── HERO ── */
.page-hero {
    background: var(--red);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 90% 10%, rgba(255,255,255,.12), transparent 55%),
        radial-gradient(ellipse 500px 300px at 0% 100%, rgba(0,0,0,.10), transparent 55%);
    pointer-events: none;
}
.ph-wave {
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
    color: var(--white);
    max-width: 18ch;
    margin: 16px 0 20px;
}
.page-hero .lead {
    font-size: 18px;
    color: rgba(255,255,255,.70);
    font-weight: 300;
    max-width: 52ch;
    line-height: 1.65;
    margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white-red {
    background: var(--white);
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    padding: 13px 26px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}
.btn-white-red:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

/* ── OFFER CARDS ── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.offer-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: box-shadow .2s, transform .2s;
}
.offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.offer-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin: 16px 0 10px;
}
.offer-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 20px;
    font-weight: 300;
}
.offer-list { list-style: none; padding: 0; margin: 0; }
.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--muted);
    border-bottom: 1px solid var(--border-sm);
    font-weight: 300;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list .check {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--red-light);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-list .check::after {
    content: "";
    width: 5px; height: 3px;
    border-left: 1.5px solid var(--red);
    border-bottom: 1.5px solid var(--red);
    transform: rotate(-45deg) translateY(-1px);
}

/* ── SECTORS ── */
.sectors { background: var(--dark-deep); padding: 80px 0; position: relative; overflow: hidden; }
.sectors-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 80% 50%, rgba(231,76,60,.12), transparent 60%);
}
.sectors .container { position: relative; z-index: 2; }
.sectors .section-head h2 { color: var(--white); }
.sectors .section-head p { color: rgba(255,255,255,.50); }
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.sector-chip {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    padding: 20px;
    transition: background .15s;
}
.sector-chip:hover { background: rgba(255,255,255,.09); }
.sector-chip h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 6px;
}
.sector-chip p {
    font-size: 12.5px;
    color: rgba(255,255,255,.42);
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* ── CASE STUDIES ── */
.cases-grid { display: flex; flex-direction: column; gap: 16px; }
.case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
    transition: box-shadow .2s;
}
.case-card:hover { box-shadow: var(--shadow-lg); }
.case-left {}
.case-client {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin: 0 0 4px;
}
.case-period {
    font-size: 12px;
    color: var(--hint);
    font-weight: 400;
    margin: 0 0 16px;
}
.case-type {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    background: var(--red-light);
    border-radius: 999px;
    padding: 4px 12px;
    width: fit-content;
}
.case-right h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 12px;
}
.case-missions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.case-mission {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}
.cm-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 7px;
}

/* ── SKILLS STRIP ── */
.skills-strip {
    background: var(--off-white);
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.skill-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.skill-item::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

/* ── CTA ── */
.cta-section {
    background: var(--dark-deep);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(231,76,60,.15), transparent 60%);
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}
.cta-inner h2 em { font-style: normal; color: var(--red); }
.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,.45);
    font-weight: 300;
    max-width: 50ch;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
    .page-hero h1     { font-size: 30px; }
    .page-hero .lead  { font-size: 15px; }
    .offers-grid      { grid-template-columns: 1fr; gap: 12px; }
    .sectors-grid     { grid-template-columns: 1fr 1fr; gap: 10px; }
    .skills-grid      { grid-template-columns: 1fr 1fr; gap: 10px; }
    .case-card        { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
    .cta-inner h2     { font-size: 26px; }
}
@media (max-width: 600px) {
    .page-hero        { padding: 56px 0 48px; }
    .page-hero h1     { font-size: 24px; letter-spacing: -0.03em; }
    .page-hero .lead  { font-size: 13.5px; line-height: 1.6; }
    .hero-actions     { flex-direction: column; gap: 10px; }
    .offers-grid      { gap: 10px; }
    .offer-card       { padding: 22px; }
    .sectors-grid     { grid-template-columns: 1fr; }
    .skills-grid      { grid-template-columns: 1fr; }
    .cta-inner h2     { font-size: 22px; }
}
