/*
Theme Name: Blocksy Child
Template: blocksy
Version: 2.9.9
*/

/* ============================================================
   FONT IMPORTS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');


/* ============================================================
   DESIGN TOKENS — CSS VARIABLES
   Single source of truth for colors, fonts, layout.
   Change a value here, it propagates everywhere.
   ============================================================ */

:root {
    /* Brand colors */
    --emg-dark:           #1B1B1B;
    --emg-dark-hover:     #202020;
    --emg-orange:         #E07A3A;
    --emg-orange-hover:   #c8622b;
    --emg-teal:           #2D6A8F;
    --emg-teal-hover:     #245a7a;

    /* Surface colors */
    --emg-white:          #ffffff;
    --emg-bg-light:       #f7f6f3;
    --emg-bg-light-hover: #faf9f7;
    --emg-border-light:   #e8e5df;
    --emg-divider-light:  #d4d0ca;

    /* Text colors (on light backgrounds) */
    --emg-text-dark:      #1B1B1B;
    --emg-text-body:      #2e2e2a;
    --emg-text-muted:     #4a4a44;
    --emg-text-subtle:    #6B6B64;
    --emg-text-faint:     #999;

    /* Typography */
    --emg-font-heading:   'Work Sans', sans-serif;
    --emg-font-body:      'DM Sans', sans-serif;

    /* Layout */
    --emg-content-max:    1200px;
    --emg-content-narrow: 960px;
    --emg-content-form:   720px;
    --emg-section-pad:    100px 6vw;
}


/* ============================================================
   SHARED BUTTON STYLES
   All button variants share the base. Only differences live
   in each modifier block.
   ============================================================ */

.btn-emg-primary,
.btn-emg-outline,
.btn-emg-teal,
.btn-emg-orange,
.btn-emg-dark,
.btn-emg-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

/* Primary — orange filled (main CTA) */
.btn-emg-primary {
    background: var(--emg-orange);
    color: var(--emg-white);
}
.btn-emg-primary:hover {
    background: var(--emg-orange-hover);
    transform: translateY(-2px);
}

/* Orange — alias of primary, kept for backwards compat */
.btn-emg-orange {
    background: var(--emg-orange);
    color: var(--emg-white);
}
.btn-emg-orange:hover {
    background: var(--emg-orange-hover);
    transform: translateY(-1px);
}

/* Outline — transparent + subtle border (secondary CTA on dark bg) */
.btn-emg-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-emg-outline:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
}

/* Teal — supporting CTA */
.btn-emg-teal {
    background: var(--emg-teal);
    color: var(--emg-white);
    padding: 13px 26px;
}
.btn-emg-teal:hover {
    background: var(--emg-teal-hover);
    transform: translateY(-1px);
}

/* Dark — black filled, hovers to teal (use on light backgrounds) */
.btn-emg-dark {
    background: var(--emg-dark);
    color: var(--emg-white);
}
.btn-emg-dark:hover {
    background: var(--emg-teal);
    transform: translateY(-1px);
}

/* Ghost white — minimal text-link feel on dark bg */
.btn-emg-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-emg-ghost-white:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
}


/* ============================================================
   SHARED UTILITY — EYEBROW LABEL
   Orange uppercase label + line. Used at top of most sections.
   Add .emg-eyebrow to a div instead of redefining per-section.
   Use .emg-eyebrow--center for centered (line on both sides).
   ============================================================ */

.emg-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.emg-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-eyebrow--center {
    justify-content: center;
}
.emg-eyebrow--center::before,
.emg-eyebrow--center::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}


/* ============================================================
   SHARED UTILITY — DOT GRID BACKGROUND
   Radial-gradient dot pattern used as section background texture.
   Add .emg-dotgrid-bg to a section. Add .emg-dotgrid-bg--dark
   for dark-section variant (white dots on dark bg).
   ============================================================ */

.emg-dotgrid-bg {
    position: relative;
}
.emg-dotgrid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}
.emg-dotgrid-bg--dark::before {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}


/* ============================================================
   SECTION — Start a Project (Bid Form)
   Rebuilt with proper EMG brand colors and fonts.
   ============================================================ */

.emg-bid {
    background: var(--emg-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: clamp(80px, 10vw, 130px) 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

/* Top accent line, matches hero treatment */
.emg-bid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emg-orange);
    z-index: 2;
}

/* Subtle dot-grid texture */
.emg-bid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.emg-bid__inner {
    max-width: var(--emg-content-form);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-bid__header {
    margin-bottom: 56px;
    text-align: center;
}

.emg-bid__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.emg-bid__eyebrow::before,
.emg-bid__eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-bid__headline {
    font-family: var(--emg-font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--emg-white);
}
.emg-bid__headline em {
    color: var(--emg-orange);
    font-style: normal;
}

.emg-bid__sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 480px;
}

/* Errors */
.emg-bid__errors {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 3px solid #ef4444;
    border-radius: 4px;
    padding: 18px 22px;
    margin-bottom: 36px;
    color: #fca5a5;
}
.emg-bid__errors strong {
    display: block;
    margin-bottom: 8px;
    color: #fecaca;
    font-family: var(--emg-font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.emg-bid__errors ul {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.7;
}

/* Honeypot — hidden from real users */
.emg-bid__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Form groups */
.emg-bid__group {
    border: none;
    margin: 0 0 44px;
    padding: 0;
}
.emg-bid__group legend {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    padding: 0 0 18px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.emg-bid__group legend::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emg-orange);
}

/* Fields */
.emg-bid__field {
    margin-bottom: 22px;
}
.emg-bid__field label {
    display: block;
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}
.emg-bid__field label span[aria-hidden] {
    color: var(--emg-orange);
    margin-left: 2px;
}
.emg-bid__optional {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.04em;
    margin-left: 4px;
}

.emg-bid__field input[type="text"],
.emg-bid__field input[type="email"],
.emg-bid__field input[type="tel"],
.emg-bid__field select,
.emg-bid__field textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--emg-white);
    font-size: 15px;
    font-family: var(--emg-font-body);
    font-weight: 400;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.emg-bid__field input::placeholder,
.emg-bid__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}
.emg-bid__field input:focus,
.emg-bid__field select:focus,
.emg-bid__field textarea:focus {
    outline: none;
    border-color: var(--emg-orange);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(224, 122, 58, 0.12);
}

.emg-bid__field textarea {
    resize: vertical;
    min-height: 130px;
    font-family: var(--emg-font-body);
}

.emg-bid__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E07A3A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.emg-bid__field select option {
    background: var(--emg-dark);
    color: var(--emg-white);
}

/* Checkboxes */
.emg-bid__checks {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .emg-bid__checks {
        grid-template-columns: 1fr 1fr;
    }
}

.emg-bid__check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--emg-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
}
.emg-bid__check:hover {
    border-color: rgba(224, 122, 58, 0.5);
}
.emg-bid__check input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--emg-orange);
    cursor: pointer;
}
.emg-bid__check:has(input:checked) {
    border-color: var(--emg-orange);
    background: rgba(224, 122, 58, 0.08);
}

/* Submit */
.emg-bid__submit {
    margin-top: 44px;
    text-align: center;
}
.emg-bid__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emg-orange);
    color: var(--emg-white);
    border: none;
    padding: 16px 44px;
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.emg-bid__btn:hover {
    background: var(--emg-orange-hover);
    transform: translateY(-2px);
}
.emg-bid__btn:active {
    transform: translateY(0);
}
.emg-bid__note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.04em;
    margin: 18px 0 0;
}

/* Success state */
.emg-bid__success {
    text-align: center;
    padding: 100px 24px;
    max-width: 520px;
    margin: 0 auto;
}
.emg-bid__success h2 {
    font-family: var(--emg-font-heading);
    color: var(--emg-white);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.emg-bid__success h2 em {
    color: var(--emg-orange);
    font-style: normal;
}
.emg-bid__success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}/* ============================================================
   SECTION — Hero
   ============================================================ */

.emg-hero {
    min-height: 100vh;
    background: var(--emg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: var(--emg-font-body);
    width: 100%;
}

.emg-hero-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--emg-orange);
    z-index: 3;
}

.emg-hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.emg-hero-glow {
    position: absolute;
    top: -10%; right: -5%;
    width: 55%; height: 120%;
    background: radial-gradient(ellipse at 70% 40%, rgba(224, 122, 58, 0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.emg-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 6vw 80px;
    align-items: center;
    gap: 56px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .emg-hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 110px 5vw 64px;
    }
}

.emg-hero-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-hero-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-hero h1 {
    font-family: var(--emg-font-heading);
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
}

.emg-hero h1 span {
    color: var(--emg-orange);
}

.emg-hero-body {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 0 40px;
}

.emg-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.emg-hero-btns svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

.emg-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.emg-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 14px;
    white-space: nowrap;
}

.emg-trust-badge svg {
    width: 12px;
    height: 12px;
    stroke: var(--emg-orange);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.emg-hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding-bottom: 0;
}

.emg-hero-ring {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(224, 122, 58, 0.12);
    top: 50%; left: 50%;
    transform: translate(-50%, -48%);
    pointer-events: none;
}

.emg-hero-ring::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(224, 122, 58, 0.07);
}

.emg-hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.emg-hero-photo {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    display: block;
    filter: brightness(0.93) contrast(1.02);
}

@media (max-width: 900px) {
    .emg-hero-photo {
        height: 500px;
    }
}

.emg-bracket-tr {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--emg-orange);
    border-right: 3px solid var(--emg-orange);
}

.emg-bracket-bl {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--emg-teal);
    border-left: 3px solid var(--emg-teal);
}

.emg-hero-nametag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(27, 27, 27, 0.92);
    border-right: 3px solid var(--emg-orange);
    padding: 10px 16px;
    text-align: right;
}

.emg-hero-nametag strong {
    display: block;
    font-family: var(--emg-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--emg-white);
    line-height: 1.2;
}

.emg-hero-nametag span {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--emg-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}/* ============================================================
   SECTION — Tagline Band
   ============================================================ */

.emg-tagline {
    background: var(--emg-white);
    padding: 72px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6vw;
    right: 6vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emg-border-light) 20%, var(--emg-border-light) 80%, transparent);
}

.emg-tagline-inner {
    max-width: var(--emg-content-narrow);
    margin: 0 auto;
    text-align: center;
}

.emg-tagline-eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-tagline-eyebrow::before,
.emg-tagline-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-tagline p {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--emg-text-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
}

.emg-tagline p span { color: var(--emg-teal); }
.emg-tagline p em { font-style: normal; color: var(--emg-orange); }


/* ============================================================
   SECTION — Pain Points (You're Not Failing)
   ============================================================ */

.emg-pain {
    background: var(--emg-bg-light);
    padding: 88px 6vw 100px;
    font-family: var(--emg-font-body);
}

.emg-pain-inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
}

.emg-pain-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.emg-pain-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-pain-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-pain-h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.emg-pain-header-desc {
    font-family: var(--emg-font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--emg-text-muted);
    line-height: 1.8;
    max-width: 380px;
    align-self: flex-end;
    margin: 0;
}

.emg-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .emg-pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .emg-pain-grid { grid-template-columns: 1fr; }
}

.emg-pain-card {
    background: var(--emg-dark);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.emg-pain-card:hover { background: var(--emg-dark-hover); }

.emg-pain-side-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--emg-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.emg-pain-card:hover .emg-pain-side-bar { transform: scaleY(1); }

.emg-pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emg-orange), rgba(224, 122, 58, 0.3));
    transition: opacity 0.3s;
}

.emg-pain-card:hover::before { opacity: 0; }

.emg-pain-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 0;
    height: 0;
    border-bottom: 2px solid var(--emg-teal);
    border-right: 2px solid var(--emg-teal);
    transition: width 0.3s ease 0.1s, height 0.3s ease 0.1s;
}

.emg-pain-card:hover::after { width: 20px; height: 20px; }

.emg-pain-card-inner {
    padding: 40px 32px 36px;
    position: relative;
    z-index: 1;
}

.emg-pain-num {
    font-family: var(--emg-font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(224, 122, 58, 0.08);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.emg-pain-card:hover .emg-pain-num { color: rgba(224, 122, 58, 0.1); }

.emg-pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(224, 122, 58, 0.07);
    border: 1px solid rgba(224, 122, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.emg-pain-card:hover .emg-pain-icon {
    background: rgba(45, 106, 143, 0.12);
    border-color: rgba(45, 106, 143, 0.35);
}

.emg-pain-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--emg-orange);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    transition: stroke 0.3s;
}

.emg-pain-card:hover .emg-pain-icon svg { stroke: var(--emg-teal); }

.emg-pain-title {
    font-family: var(--emg-font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--emg-white);
    line-height: 1.25;
    margin-bottom: 14px;
    transition: color 0.2s;
}

.emg-pain-card:hover .emg-pain-title { color: var(--emg-orange); }

.emg-pain-body {
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.emg-pain-card:hover .emg-pain-body { color: rgba(255, 255, 255, 1); }

.emg-pain-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.emg-pain-tag {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emg-orange);
    border: 1px solid rgba(224, 122, 58, 0.4);
    border-radius: 2px;
    padding: 3px 8px;
    transition: all 0.2s;
}

.emg-pain-card:hover .emg-pain-tag {
    color: var(--emg-teal);
    border-color: rgba(45, 106, 143, 0.5);
}/* ============================================================
   SECTION — USPs (What Sets Us Apart)
   ============================================================ */

.emg-usps {
    background: var(--emg-dark);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid texture */
.emg-usps::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Ambient orange glow, off-center */
.emg-usps::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse at 60% 40%, rgba(224, 122, 58, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.emg-usps__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-usps__header {
    text-align: center;
    margin-bottom: 64px;
}

.emg-usps__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-usps__eyebrow::before,
.emg-usps__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-usps__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.emg-usps__h2 em {
    font-style: normal;
    color: var(--emg-orange);
}
.emg-usps__h2 span {
    color: var(--emg-teal);
}

.emg-usps__sub {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Grid */
.emg-usps__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .emg-usps__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
    .emg-usps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .emg-usps__grid { grid-template-columns: 1fr; }
}

/* Card */
.emg-usps__card {
    background: var(--emg-dark);
    padding: 40px 28px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}
.emg-usps__card:hover {
    background: var(--emg-dark-hover);
}

/* Top orange accent line */
.emg-usps__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emg-orange), rgba(224, 122, 58, 0.3));
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.emg-usps__card:hover::before {
    transform: scaleX(1);
}

/* Bottom-right teal corner that grows on hover */
.emg-usps__card::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 0;
    height: 0;
    border-bottom: 2px solid var(--emg-teal);
    border-right: 2px solid var(--emg-teal);
    transition: width 0.3s ease 0.1s, height 0.3s ease 0.1s;
}
.emg-usps__card:hover::after {
    width: 18px;
    height: 18px;
}

/* Icon */
.emg-usps__icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(224, 122, 58, 0.07);
    border: 1px solid rgba(224, 122, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}
.emg-usps__card:hover .emg-usps__icon {
    background: rgba(45, 106, 143, 0.12);
    border-color: rgba(45, 106, 143, 0.35);
}
.emg-usps__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--emg-orange);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}
.emg-usps__card:hover .emg-usps__icon svg {
    stroke: var(--emg-teal);
}

/* Primary value (the big text — number OR phrase) */
.emg-usps__value {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.emg-usps__card:hover .emg-usps__value {
    color: var(--emg-orange);
}

/* Label (under primary, uppercase smaller) */
.emg-usps__label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emg-teal);
    margin-bottom: 14px;
    line-height: 1.3;
}

/* Divider line */
.emg-usps__divider {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
    transition: width 0.3s, background 0.3s;
}
.emg-usps__card:hover .emg-usps__divider {
    width: 48px;
    background: var(--emg-orange);
}

/* Detail (small body copy) */
.emg-usps__detail {
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    transition: color 0.2s;
}
.emg-usps__card:hover .emg-usps__detail {
    color: rgba(255, 255, 255, 0.95);
}/* ============================================================
   SECTION — About (What You Need to Know About EMG)
   ============================================================ */

.emg-about {
    background: var(--emg-dark);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

/* Top gradient accent line (orange to teal) */
.emg-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emg-orange) 30%, var(--emg-teal) 70%, transparent);
}

.emg-about-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    max-width: var(--emg-content-max);
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 860px) {
    .emg-about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

/* Photo wrapper */
.emg-about-photo-wrap { position: relative; }

.emg-about-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
    filter: brightness(0.9) contrast(1.04);
}

.emg-about-bracket-tl {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 44px;
    height: 44px;
    border-top: 3px solid var(--emg-orange);
    border-left: 3px solid var(--emg-orange);
}

.emg-about-bracket-br {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 44px;
    height: 44px;
    border-bottom: 3px solid var(--emg-teal);
    border-right: 3px solid var(--emg-teal);
}

.emg-about-badge {
    position: absolute;
    top: 28px;
    right: -24px;
    background: var(--emg-orange);
    border-radius: 4px;
    padding: 18px 22px;
    text-align: center;
    z-index: 2;
}

@media (max-width: 860px) {
    .emg-about-badge { right: 16px; top: 16px; }
}

.emg-about-badge strong {
    display: block;
    font-family: var(--emg-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1;
}

.emg-about-badge span {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.emg-about-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 27, 27, 0.92) 0%, transparent 100%);
    padding: 40px 20px 20px;
    border-radius: 0 0 4px 4px;
}

.emg-about-photo-label span {
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--emg-orange);
    padding-left: 12px;
    display: block;
}

/* Copy column */
.emg-about-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-about-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-about h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.emg-about h2 span { color: var(--emg-teal); }

/* Grace's quote — pull-quote between h2 and body */
.emg-about-quote {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    font-style: italic;
    font-weight: 500;
    color: var(--emg-orange);
    line-height: 1.5;
    margin: 0 0 28px;
    padding: 4px 0 4px 18px;
    border-left: 3px solid var(--emg-orange);
}

.emg-about-quote em {
    font-style: italic;
    color: var(--emg-orange);
}

.emg-about-body {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    margin: 0 0 18px;
}

/* Stats row */
.emg-about-stats {
    display: flex;
    gap: 0;
    margin: 36px 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.emg-about-stat {
    flex: 1;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: background 0.2s;
}

.emg-about-stat:last-child { border-right: none; }
.emg-about-stat:hover { background: rgba(255, 255, 255, 0.03); }

.emg-about-stat strong {
    display: block;
    font-family: var(--emg-font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--emg-orange);
    line-height: 1;
    margin-bottom: 6px;
}

.emg-about-stat span {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 500;
    color: rgba(45, 106, 143, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Pills row */
.emg-about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.emg-about-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 7px 14px;
    transition: all 0.2s;
}

.emg-about-pill:hover {
    background: rgba(224, 122, 58, 0.08);
    border-color: rgba(224, 122, 58, 0.35);
    color: var(--emg-white);
}

.emg-about-pill svg {
    width: 12px;
    height: 12px;
    stroke: var(--emg-orange);
    fill: none;
    flex-shrink: 0;
}/* ============================================================
   SECTION — Pillars (Initiative Marketing Suite)
   ============================================================ */

.emg-pillars {
    background: var(--emg-white);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

/* Subtle orange dot-grid texture */
.emg-pillars::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.emg-pillars__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-pillars__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.emg-pillars__header-left {
    flex: 1;
    min-width: 280px;
}

.emg-pillars__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-pillars__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-pillars__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

.emg-pillars__h2 em { font-style: normal; color: var(--emg-orange); }
.emg-pillars__h2 span { color: var(--emg-teal); }

.emg-pillars__desc {
    font-family: var(--emg-font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--emg-text-muted);
    line-height: 1.8;
    max-width: 400px;
    align-self: flex-end;
    margin: 0;
}

/* Grid */
.emg-pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--emg-divider-light);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 1000px) {
    .emg-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .emg-pillars__grid { grid-template-columns: 1fr; }
}

/* Card */
.emg-pillars__card {
    background: var(--emg-dark);
    padding: 44px 32px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.3s;
}
.emg-pillars__card:hover { background: var(--emg-dark-hover); }

/* Left orange bar that slides up on hover */
.emg-pillars__card-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--emg-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}
.emg-pillars__card:hover .emg-pillars__card-bar { transform: scaleY(1); }

/* Top orange gradient line (visible by default, fades on hover) */
.emg-pillars__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emg-orange), rgba(224, 122, 58, 0.2));
    transition: opacity 0.3s;
}
.emg-pillars__card:hover::before { opacity: 0; }

/* Bottom-right teal corner that grows on hover */
.emg-pillars__card::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 0;
    height: 0;
    border-bottom: 2px solid var(--emg-teal);
    border-right: 2px solid var(--emg-teal);
    transition: width 0.3s ease 0.1s, height 0.3s ease 0.1s;
}
.emg-pillars__card:hover::after { width: 22px; height: 22px; }

/* Icon */
.emg-pillars__icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(224, 122, 58, 0.07);
    border: 1px solid rgba(224, 122, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s;
}
.emg-pillars__card:hover .emg-pillars__icon {
    background: rgba(45, 106, 143, 0.12);
    border-color: rgba(45, 106, 143, 0.35);
}
.emg-pillars__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--emg-orange);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}
.emg-pillars__card:hover .emg-pillars__icon svg { stroke: var(--emg-teal); }

/* Number in top-right corner (very subtle) */
.emg-pillars__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--emg-font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(224, 122, 58, 0.07);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    transition: color 0.3s;
}
.emg-pillars__card:hover .emg-pillars__num { color: rgba(224, 122, 58, 0.12); }

/* Title */
.emg-pillars__title {
    font-family: var(--emg-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--emg-white);
    margin-bottom: 12px;
    line-height: 1.25;
    transition: color 0.2s;
}
.emg-pillars__card:hover .emg-pillars__title { color: var(--emg-orange); }

/* Divider that grows on hover */
.emg-pillars__divider {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 14px 0;
    transition: width 0.3s, background 0.3s;
}
.emg-pillars__card:hover .emg-pillars__divider {
    width: 48px;
    background: var(--emg-orange);
}

/* Body */
.emg-pillars__body {
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin: 0;
    transition: color 0.2s;
}
.emg-pillars__card:hover .emg-pillars__body { color: rgba(255, 255, 255, 1); }
/* ============================================================
   SECTION — Process (How We Work)
   ============================================================ */

.emg-process {
    background: var(--emg-dark);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.emg-process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 106, 143, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.emg-process-inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.emg-process-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 860px) {
    .emg-process-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* Left column — photo + CTA */
.emg-process-photo-wrap { position: relative; }

.emg-process-photo {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
    filter: brightness(0.88) contrast(1.04);
}

.emg-process-bracket-tr {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--emg-orange);
    border-right: 3px solid var(--emg-orange);
}

.emg-process-bracket-bl {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--emg-teal);
    border-left: 3px solid var(--emg-teal);
}

.emg-process-badge {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: var(--emg-orange);
    border-radius: 4px;
    padding: 20px 24px;
    text-align: center;
    z-index: 2;
}

@media (max-width: 860px) {
    .emg-process-badge { right: 16px; bottom: 16px; }
}

.emg-process-badge strong {
    display: block;
    font-family: var(--emg-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1;
}

.emg-process-badge span {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.emg-process-btn-wrap { margin-top: 48px; }

/* Right column — copy + steps */
.emg-process-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-process-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-process h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.emg-process h2 em { font-style: normal; color: var(--emg-orange); }
.emg-process h2 span { color: var(--emg-teal); }

.emg-process-intro {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin: 0 0 48px;
}

.emg-process-steps {
    display: flex;
    flex-direction: column;
}

/* Each step */
.emg-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    position: relative;
    cursor: pointer;
}

/* Vertical connector line between steps */
.emg-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 44px;
    bottom: -1px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(224, 122, 58, 0.3), rgba(45, 106, 143, 0.15));
}

.emg-step:last-child::before { display: none; }

.emg-step-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2px;
    position: relative;
    z-index: 1;
}

.emg-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--emg-orange);
    background: var(--emg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--emg-orange);
    transition: all 0.3s;
    flex-shrink: 0;
}

.emg-step:hover .emg-step-circle {
    background: var(--emg-orange);
    color: var(--emg-white);
}

.emg-step-content { padding: 0 0 40px 24px; }

.emg-step-title {
    font-family: var(--emg-font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--emg-white);
    margin-bottom: 6px;
    line-height: 1.2;
    transition: color 0.2s;
}

.emg-step:hover .emg-step-title { color: var(--emg-orange); }

.emg-step-title span { color: var(--emg-teal); }
.emg-step-title em { font-style: normal; color: var(--emg-orange); }

.emg-step-line {
    height: 2px;
    background: var(--emg-orange);
    width: 0;
    transition: width 0.4s ease;
    margin-bottom: 12px;
}

.emg-step:hover .emg-step-line { width: 48px; }

.emg-step-body {
    font-family: var(--emg-font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.emg-step:hover .emg-step-body { color: rgba(255, 255, 255, 1); }

.emg-step-tag {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emg-teal);
    border: 1px solid rgba(45, 106, 143, 0.35);
    border-radius: 2px;
    padding: 3px 8px;
    margin-top: 12px;
    display: inline-block;
    transition: all 0.2s;
}

.emg-step:hover .emg-step-tag {
    color: var(--emg-orange);
    border-color: rgba(224, 122, 58, 0.4);
}/* ============================================================
   SECTION — Team (Meet the EMG Team)
   ============================================================ */

.emg-team {
    background: var(--emg-dark);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.emg-team::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(224, 122, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.emg-team-inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.emg-team-header {
    text-align: center;
    margin-bottom: 64px;
}

.emg-team-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-team-label::before,
.emg-team-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-team h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.emg-team h2 em { font-style: normal; color: var(--emg-orange); }
.emg-team h2 span { color: var(--emg-teal); }

.emg-team-sub {
    font-family: var(--emg-font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.emg-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .emg-team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .emg-team-grid { grid-template-columns: 1fr; }
}

/* Card */
.emg-team-card {
    background: var(--emg-dark);
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}
.emg-team-card:hover { background: var(--emg-dark-hover); }

.emg-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emg-orange), rgba(224, 122, 58, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.emg-team-card:hover::before { transform: scaleX(1); }

.emg-team-card::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 0;
    height: 0;
    border-bottom: 2px solid var(--emg-teal);
    border-right: 2px solid var(--emg-teal);
    transition: width 0.3s ease 0.15s, height 0.3s ease 0.15s;
}
.emg-team-card:hover::after { width: 20px; height: 20px; }

/* Photo */
/* Photo wrap — same size for every member */
.emg-team-photo-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;          /* circle */
    overflow: hidden;
    flex-shrink: 0;
}

/* Photo itself — fills the circle, crops top-aligned */
.emg-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;  /* keep faces visible */
    display: block;
}

/* Per-member photo positioning — handles photos that aren't pre-cropped to face */
.emg-team-card:nth-child(3) .emg-team-photo {
    transform: scale(1.6);
    object-position: center 28%;
    transform-origin: center 28%;
}

/* Decorative bracket accent (if you still have it) */
.emg-team-photo-bracket {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(224, 122, 58, 0.3);
    pointer-events: none;
}

/* Avatar placeholder also gets the same circle */
.emg-team-avatar-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--emg-white);
    flex-shrink: 0;
}

.emg-team-avatar-placeholder.avatar-orange {
    background: linear-gradient(135deg, var(--emg-orange), var(--emg-orange-hover));
}

.emg-team-avatar-placeholder.avatar-teal {
    background: linear-gradient(135deg, var(--emg-teal), var(--emg-teal-hover));
}
}

.emg-team-card:hover .emg-team-photo {
    transform: scale(1.03);
    filter: brightness(0.95) contrast(1.05);
}

.emg-team-photo-bracket {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--emg-orange);
    border-left: 2px solid var(--emg-orange);
    transition: width 0.3s, height 0.3s;
    pointer-events: none;
}
.emg-team-card:hover .emg-team-photo-bracket { width: 32px; height: 32px; }

/* Avatar placeholder (when no photo) */
.emg-team-avatar-placeholder {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--emg-white);
    border-radius: 4px;
    margin-bottom: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.avatar-orange {
    background: linear-gradient(135deg, rgba(224, 122, 58, 0.25), rgba(224, 122, 58, 0.08));
    border: 1px solid rgba(224, 122, 58, 0.2);
}
.avatar-teal {
    background: linear-gradient(135deg, rgba(45, 106, 143, 0.25), rgba(45, 106, 143, 0.08));
    border: 1px solid rgba(45, 106, 143, 0.2);
}

/* Name + role */
.emg-team-name {
    font-family: var(--emg-font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--emg-white);
    margin-bottom: 4px;
    line-height: 1.2;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}
.emg-team-card:hover .emg-team-name { color: var(--emg-orange); }

.emg-team-role {
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emg-teal);
    margin-bottom: 16px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.emg-team-divider {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    transition: width 0.3s, background 0.3s;
    position: relative;
    z-index: 1;
}
.emg-team-card:hover .emg-team-divider {
    background: var(--emg-orange);
    width: 48px;
}

.emg-team-bio {
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    flex: 1;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.emg-team-card:hover .emg-team-bio { color: rgba(255, 255, 255, 1); }

/* LinkedIn link (real URL) */
.emg-team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emg-teal);
    text-decoration: none;
    border: 1px solid rgba(45, 106, 143, 0.35);
    border-radius: 3px;
    padding: 6px 12px;
    margin-top: auto;
    transition: all 0.2s;
    width: fit-content;
    position: relative;
    z-index: 1;
}
.emg-team-linkedin:hover {
    background: var(--emg-teal);
    color: var(--emg-white);
    border-color: var(--emg-teal);
}
.emg-team-linkedin svg {
    width: 13px !important;
    height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    min-width: 13px !important;
    fill: currentColor;
    flex-shrink: 0;
    display: block;
}

/* LinkedIn TBD state (coming soon) */
.emg-team-linkedin-tbd {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    margin-top: auto;
    padding: 6px 0;
}
.emg-team-linkedin-tbd svg {
    width: 13px !important;
    height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    min-width: 13px !important;
    fill: currentColor;
    flex-shrink: 0;
    display: block;
    opacity: 0.25;
}/* ============================================================
   SECTION — Updates & Insights (Blog / Content Hub)
   ============================================================ */

.emg-blog {
    background: var(--emg-bg-light);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-blog::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.emg-blog-inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.emg-blog-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-blog-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-blog h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

.emg-blog h2 em { font-style: normal; color: var(--emg-orange); }
.emg-blog h2 span { color: var(--emg-teal); }

.emg-blog-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emg-teal);
    text-decoration: none;
    border: 1px solid rgba(45, 106, 143, 0.3);
    border-radius: 3px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: all 0.2s;
}

.emg-blog-viewall:hover {
    background: var(--emg-teal);
    color: var(--emg-white);
    border-color: var(--emg-teal);
}

/* Grid */
.emg-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--emg-divider-light);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .emg-blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .emg-blog-grid { grid-template-columns: 1fr; }
}

/* Card */
.emg-blog-card {
    background: var(--emg-white);
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.emg-blog-card:hover { background: var(--emg-bg-light-hover); }

.emg-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emg-orange), rgba(224, 122, 58, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 2;
}
.emg-blog-card:hover::before { transform: scaleX(1); }

/* Image / placeholder */
.emg-blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--emg-dark);
    flex-shrink: 0;
}

.emg-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    filter: brightness(0.88);
}

.emg-blog-card:hover .emg-blog-img img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.emg-blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.emg-blog-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 20px 20px;
}

.emg-blog-placeholder-icon {
    position: relative;
    z-index: 1;
    opacity: 0.15;
}

.emg-blog-placeholder-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--emg-white);
    fill: none;
    stroke-width: 1;
}

/* Category tag (top-left of image) */
.emg-blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--emg-orange);
    color: var(--emg-white);
    font-family: var(--emg-font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
}

.emg-blog-cat.teal { background: var(--emg-teal); }
.emg-blog-cat.dark { background: rgba(27, 27, 27, 0.85); }

/* Read time / duration (bottom-right of image) */
.emg-blog-readtime {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(27, 27, 27, 0.75);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--emg-font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 2px;
    z-index: 2;
}

/* Body */
.emg-blog-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.emg-blog-date {
    font-family: var(--emg-font-body);
    font-size: 11px;
    color: var(--emg-text-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.emg-blog-title {
    font-family: var(--emg-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--emg-text-dark);
    line-height: 1.3;
    margin: 0 0 12px;
    transition: color 0.2s;
}

.emg-blog-card:hover .emg-blog-title { color: var(--emg-orange); }

.emg-blog-title em { font-style: normal; color: var(--emg-orange); }
.emg-blog-title span { color: var(--emg-teal); }
.emg-blog-card:hover .emg-blog-title span { color: var(--emg-orange); }

.emg-blog-excerpt {
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--emg-text-muted);
    line-height: 1.8;
    flex: 1;
    margin: 0 0 20px;
}

/* Footer with author */
.emg-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--emg-border-light);
}

.emg-blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.emg-blog-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 2px solid rgba(224, 122, 58, 0.3);
}

.emg-blog-author-avatar-initials {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emg-orange), var(--emg-orange-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-heading);
    font-size: 10px;
    font-weight: 800;
    color: var(--emg-white);
    flex-shrink: 0;
}

.emg-blog-author-name {
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--emg-text-subtle);
}

/* Coming soon overlay (for placeholder cards) */
.emg-blog-coming-soon {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 27, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.emg-blog-coming-soon span {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 2px;
    
}

.emg-blog-sub {
    font-family: var(--emg-font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--emg-text-muted);
    line-height: 1.7;
    max-width: 580px;
    margin: 10px 0 0;
}

/* Coming-soon shell — replaces full card content when status = 'coming_soon' */
.emg-blog-card--coming-soon {
    /* Remove the hover behaviors and link styling from the card itself */
    cursor: default;
    text-decoration: none;
}

.emg-blog-card--coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.emg-blog-shell {
    background: var(--emg-dark);
    min-height: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Subtle dot pattern in the shell so it's not just a blank dark box */
.emg-blog-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Category tag stays in top-left, same position as published cards */
.emg-blog-shell .emg-blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

/* Centered "Coming Soon" label */
.emg-blog-shell-label {
    position: relative;
    z-index: 1;
    text-align: center;
}

.emg-blog-shell-label span {
    display: inline-block;
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 2px;
}

/* ============================================================
   SECTION — Final CTA (Page Closer)
   ============================================================ */

.emg-cta {
    background: var(--emg-dark);
    padding: 110px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle dot-grid texture */
.emg-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Ambient orange glow — centered, behind content */
.emg-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(224, 122, 58, 0.08) 0%, transparent 68%);
    pointer-events: none;
}

/* Bottom accent line — orange-to-teal gradient */
.emg-cta-accent {
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emg-orange) 40%, var(--emg-teal) 60%, transparent);
}

.emg-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Eyebrow with lines on both sides */
.emg-cta-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-cta-label::before,
.emg-cta-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.4;
}

/* Big headline */
.emg-cta h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.emg-cta h2 em { font-style: normal; color: var(--emg-orange); }
.emg-cta h2 span { color: var(--emg-teal); }

/* Sub copy */
.emg-cta-sub {
    font-family: var(--emg-font-body);
    font-size: 19px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 48px;
}

/* CTA buttons row */
.emg-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.emg-cta-btns svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}/* ============================================================
   SECTION — Logos (Trusted By)
   ============================================================ */

.emg-logos {
    background: var(--emg-white);
    padding: 56px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    border-bottom: 1px solid var(--emg-border-light);
}

.emg-logos__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    text-align: center;
}

.emg-logos__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-text-subtle);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-logos__eyebrow::before,
.emg-logos__eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--emg-divider-light);
}

.emg-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 56px;
}

@media (max-width: 720px) {
    .emg-logos__grid { gap: 24px 32px; }
}

/* Logo item — both image and placeholder versions */
.emg-logos__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: opacity 0.2s, filter 0.2s;
}

.emg-logos__item img {
    max-height: 40px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s;
}

.emg-logos__item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Placeholder logo box (when no image yet) */
.emg-logos__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border: 1px dashed var(--emg-divider-light);
    border-radius: 4px;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--emg-text-subtle);
    background: var(--emg-bg-light);
    transition: all 0.2s;
}

.emg-logos__placeholder:hover {
    color: var(--emg-text-body);
    border-color: var(--emg-text-subtle);
}


/* ============================================================
   SECTION — Testimonials (Real Outcomes)
   ============================================================ */

.emg-testimonials {
    background: var(--emg-white);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.emg-testimonials__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-testimonials__header {
    text-align: center;
    margin-bottom: 56px;
}

.emg-testimonials__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-testimonials__eyebrow::before,
.emg-testimonials__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-testimonials__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.emg-testimonials__h2 em { font-style: normal; color: var(--emg-orange); }
.emg-testimonials__h2 span { color: var(--emg-teal); }

.emg-testimonials__sub {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--emg-text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* Grid */
.emg-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .emg-testimonials__grid { grid-template-columns: 1fr; }
}

/* Card */
.emg-testimonials__card {
    background: var(--emg-bg-light);
    border-radius: 6px;
    padding: 36px 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.2s, transform 0.2s;
}

.emg-testimonials__card:not(.placeholder):hover {
    background: var(--emg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Quote mark icon at top */
.emg-testimonials__quote-icon {
    width: 32px;
    height: 32px;
    color: var(--emg-orange);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.emg-testimonials__quote-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    opacity: 0.85;
}

/* Quote text */
.emg-testimonials__quote {
    font-family: var(--emg-font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--emg-text-body);
    line-height: 1.6;
    margin: 0 0 24px;
    flex: 1;
}

/* Attribution row */
.emg-testimonials__attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--emg-border-light);
}

.emg-testimonials__attribution-photo,
.emg-testimonials__attribution-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.emg-testimonials__attribution-photo {
    object-fit: cover;
    object-position: top;
    border: 2px solid rgba(224, 122, 58, 0.3);
}

.emg-testimonials__attribution-initials {
    background: linear-gradient(135deg, var(--emg-orange), var(--emg-orange-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--emg-white);
}

.emg-testimonials__attribution-text {
    flex: 1;
    min-width: 0;
}

.emg-testimonials__attribution-name {
    font-family: var(--emg-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--emg-text-dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.emg-testimonials__attribution-meta {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--emg-text-subtle);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* Placeholder state (subtle differentiation) */
.emg-testimonials__card.placeholder {
    background: transparent;
    border: 1px dashed var(--emg-divider-light);
}

.emg-testimonials__card.placeholder .emg-testimonials__quote {
    color: var(--emg-text-subtle);
    font-style: italic;
}

.emg-testimonials__card.placeholder .emg-testimonials__quote-icon {
    color: var(--emg-divider-light);
}

.emg-testimonials__pending-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.06);
    font-family: var(--emg-font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    color: var(--emg-text-subtle);
}/* ============================================================
   SECTION — Services Hero
   ============================================================ */

.emg-shero {
    min-height: 75vh;
    background: var(--emg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-body);
    width: 100%;
    padding: 140px 6vw 100px;
    text-align: center;
}

@media (max-width: 720px) {
    .emg-shero {
        min-height: 60vh;
        padding: 110px 5vw 72px;
    }
}

/* Top orange accent line — matches home hero */
.emg-shero__accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--emg-orange);
    z-index: 3;
}

/* Dot grid texture */
.emg-shero__dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Centered ambient glow */
.emg-shero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(224, 122, 58, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.emg-shero__inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

/* Eyebrow — centered with lines on both sides */
.emg-shero__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-shero__eyebrow::before,
.emg-shero__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

/* Headline — big, slightly smaller than home hero */
.emg-shero h1 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2.4rem, 4.5vw, 4.4rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
}

.emg-shero h1 em {
    font-style: normal;
    color: var(--emg-orange);
}

.emg-shero h1 span {
    color: var(--emg-teal);
}

/* Subhead */
.emg-shero__sub {
    font-family: var(--emg-font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 44px;
}

/* CTA buttons */
.emg-shero__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.emg-shero__btns svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

/* Anchor pill navigation */
.emg-shero__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 640px;
    margin: 0 auto;
}

.emg-shero__nav-label {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-right: 4px;
}

.emg-shero__nav a {
    display: inline-flex;
    align-items: center;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
}

.emg-shero__nav a:hover {
    border-color: var(--emg-orange);
    color: var(--emg-orange);
    background: rgba(224, 122, 58, 0.06);
}

@media (max-width: 540px) {
    .emg-shero__nav {
        max-width: 100%;
    }
    .emg-shero__nav-label {
        width: 100%;
        text-align: center;
        margin: 0 0 8px;
    }
}/* ============================================================
   SECTION — Engagement Tiers
   ============================================================ */

.emg-tiers {
    background: var(--emg-white);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-tiers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.emg-tiers__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-tiers__header {
    text-align: center;
    margin-bottom: 48px;
}

.emg-tiers__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-tiers__eyebrow::before,
.emg-tiers__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-tiers__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

.emg-tiers__h2 em { font-style: normal; color: var(--emg-orange); }
.emg-tiers__h2 span { color: var(--emg-teal); }

/* Self-selector — the 3 quote → tier mapping */
.emg-tiers__selector {
    max-width: 720px;
    margin: 56px auto 72px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emg-tiers__selector-row {
    display: grid;
    grid-template-columns: 1fr auto 200px;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--emg-bg-light);
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.emg-tiers__selector-row:hover {
    background: var(--emg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.emg-tiers__selector-quote {
    font-family: var(--emg-font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--emg-text-dark);
    line-height: 1.4;
    font-style: italic;
}

.emg-tiers__selector-arrow {
    color: var(--emg-orange);
    flex-shrink: 0;
}

.emg-tiers__selector-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    display: block;
}

.emg-tiers__selector-tier {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emg-orange);
    text-align: right;
    line-height: 1.3;
}

@media (max-width: 720px) {
    .emg-tiers__selector-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 20px;
    }
    .emg-tiers__selector-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    .emg-tiers__selector-tier {
        text-align: left;
    }
}

/* Tier cards grid */
.emg-tiers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 960px) {
    .emg-tiers__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Tier card */
.emg-tiers__card {
    background: var(--emg-dark);
    color: var(--emg-white);
    border-radius: 6px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
}

.emg-tiers__card:hover {
    background: var(--emg-dark-hover);
    transform: translateY(-3px);
}

.emg-tiers__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emg-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.emg-tiers__card:hover::before {
    transform: scaleX(1);
}

/* Card header (number + tier name) */
.emg-tiers__card-num {
    font-family: var(--emg-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.emg-tiers__card-name {
    font-family: var(--emg-font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.emg-tiers__card-tagline {
    font-family: var(--emg-font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--emg-orange);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 28px;
}

/* Card body sections */
.emg-tiers__card-section {
    margin-bottom: 24px;
}

.emg-tiers__card-section:last-of-type {
    margin-bottom: 32px;
}

.emg-tiers__card-label {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emg-tiers__card-label::before {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: var(--emg-orange);
    opacity: 0.6;
}

.emg-tiers__card-text {
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
}

.emg-tiers__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emg-tiers__card-list li {
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    padding: 6px 0 6px 18px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.emg-tiers__card-list li:last-child {
    border-bottom: none;
}

.emg-tiers__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 1px;
    background: var(--emg-orange);
}

/* Card CTA */
.emg-tiers__card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--emg-orange);
    color: var(--emg-white);
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}

.emg-tiers__card-cta:hover {
    background: var(--emg-orange-hover);
    color: var(--emg-white);
}

.emg-tiers__card-cta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
}

/* Advisory tier — different CTA color */
.emg-tiers__card-cta.teal {
    background: var(--emg-teal);
}

.emg-tiers__card-cta.teal:hover {
    background: var(--emg-teal-hover);
}/* ============================================================
   SECTION — Service Details (4 Pillar Deep-Dives)
   ============================================================ */

.emg-svc-details {
    background: var(--emg-bg-light);
    padding: 100px 6vw 60px;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-svc-details::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(45, 106, 143, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.emg-svc-details__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section header */
.emg-svc-details__header {
    text-align: center;
    margin-bottom: 56px;
}

.emg-svc-details__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-svc-details__eyebrow::before,
.emg-svc-details__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-svc-details__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.emg-svc-details__h2 em { font-style: normal; color: var(--emg-orange); }
.emg-svc-details__h2 span { color: var(--emg-teal); }

.emg-svc-details__sub {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--emg-text-muted);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* Pillar row */
.emg-svc-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    padding: 64px 0;
    border-bottom: 1px solid var(--emg-divider-light);
    scroll-margin-top: 80px; /* offset for sticky header on anchor jump */
}

.emg-svc-row:last-child {
    border-bottom: none;
}

@media (max-width: 880px) {
    .emg-svc-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }
}

/* Visual side (number + icon) */
.emg-svc-row__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 880px) {
    .emg-svc-row__visual {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

.emg-svc-row__number {
    font-family: var(--emg-font-heading);
    font-size: 88px;
    font-weight: 800;
    color: var(--emg-orange);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0;
}

@media (max-width: 880px) {
    .emg-svc-row__number {
        font-size: 56px;
    }
}

.emg-svc-row__icon {
    width: 44px;
    height: 44px;
    color: var(--emg-text-dark);
    opacity: 0.45;
}

.emg-svc-row__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 880px) {
    .emg-svc-row__icon {
        width: 36px;
        height: 36px;
    }
}

/* Content side */
.emg-svc-row__content {
    min-width: 0; /* prevents grid blowout */
}

.emg-svc-row__title {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}

.emg-svc-row__title em { font-style: normal; color: var(--emg-orange); }
.emg-svc-row__title span { color: var(--emg-teal); }

.emg-svc-row__what {
    font-family: var(--emg-font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--emg-text-dark);
    line-height: 1.55;
    margin: 0 0 16px;
}

.emg-svc-row__how {
    font-family: var(--emg-font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--emg-text-muted);
    line-height: 1.75;
    margin: 0 0 36px;
}

/* Includes section */
.emg-svc-row__includes {
    margin-bottom: 32px;
}

.emg-svc-row__label {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-svc-row__label::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--emg-orange);
}

.emg-svc-row__includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
}

@media (max-width: 600px) {
    .emg-svc-row__includes-list {
        grid-template-columns: 1fr;
    }
}

.emg-svc-row__includes-list li {
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--emg-text-body);
    line-height: 1.5;
    padding: 6px 0 6px 18px;
    position: relative;
}

.emg-svc-row__includes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 1px;
    background: var(--emg-orange);
}

/* Best for callout */
.emg-svc-row__bestfor {
    background: var(--emg-white);
    border-left: 3px solid var(--emg-orange);
    border-radius: 0 4px 4px 0;
    padding: 18px 24px;
    margin-top: 8px;
}

.emg-svc-row__bestfor-label {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 6px;
}

.emg-svc-row__bestfor-text {
    font-family: var(--emg-font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--emg-text-dark);
    line-height: 1.5;
    margin: 0;
}/* ============================================================
   SECTION — Featured Case Study
   ============================================================ */

.emg-case {
    background: var(--emg-white);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-case::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.emg-case__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section header (minimal — the card is the substance) */
.emg-case__header {
    text-align: center;
    margin-bottom: 48px;
}

.emg-case__section-eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-case__section-eyebrow::before,
.emg-case__section-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-case__section-h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.emg-case__section-h2 em { font-style: normal; color: var(--emg-orange); }
.emg-case__section-h2 span { color: var(--emg-teal); }

/* Spotlight card */
.emg-case__card {
    display: grid;
    grid-template-columns: 4fr 5fr;
    background: var(--emg-bg-light);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 880px) {
    .emg-case__card {
        grid-template-columns: 1fr;
    }
}

/* Pending badge for placeholder state */
.emg-case__pending {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    font-family: var(--emg-font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    color: var(--emg-text-subtle);
    z-index: 4;
    backdrop-filter: blur(4px);
}

/* Visual side */
.emg-case__visual {
    background: var(--emg-dark);
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.emg-case__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
}

/* Placeholder visual treatment */
.emg-case__visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    background: var(--emg-dark);
}

.emg-case__visual-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 22px 22px;
}

.emg-case__visual-placeholder-icon {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.emg-case__visual-placeholder-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.emg-case__visual-placeholder-text {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

/* Content side */
.emg-case__content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 880px) {
    .emg-case__content {
        padding: 40px 32px;
    }
}

.emg-case__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-case__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emg-orange);
}

.emg-case__title {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
}

.emg-case__title em { font-style: normal; color: var(--emg-orange); }
.emg-case__title span { color: var(--emg-teal); }

.emg-case__summary {
    margin-bottom: 28px;
}

.emg-case__summary p {
    font-family: var(--emg-font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--emg-text-muted);
    line-height: 1.75;
    margin: 0 0 12px;
}

.emg-case__summary p:last-child {
    margin-bottom: 0;
}

/* Metric callout */
.emg-case__metric {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid var(--emg-border-light);
    border-bottom: 1px solid var(--emg-border-light);
    margin-bottom: 28px;
}

.emg-case__metric-value {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--emg-orange);
    line-height: 1;
    letter-spacing: -0.03em;
}

.emg-case__metric-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emg-text-subtle);
    line-height: 1.4;
}

/* CTA link */
.emg-case__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emg-orange);
    text-decoration: none;
    align-self: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--emg-orange);
    transition: gap 0.2s, color 0.2s;
}

.emg-case__cta:hover {
    gap: 16px;
    color: var(--emg-orange-hover);
    border-bottom-color: var(--emg-orange-hover);
}

.emg-case__cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

/* Placeholder state — slightly muted feel */
.emg-case__card.placeholder .emg-case__title {
    color: var(--emg-text-muted);
    font-style: italic;
}

.emg-case__card.placeholder .emg-case__metric-value {
    color: var(--emg-divider-light);
}

.emg-case__card.placeholder .emg-case__cta {
    color: var(--emg-text-subtle);
    border-bottom-color: var(--emg-divider-light);
}

.emg-case__card.placeholder .emg-case__cta:hover {
    color: var(--emg-text-muted);
}/* ============================================================
   SECTION — Tech Stack (Tools We Use)
   ============================================================ */

.emg-stack {
    background: var(--emg-bg-light);
    padding: 100px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(45, 106, 143, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.emg-stack__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.emg-stack__header {
    text-align: center;
    margin-bottom: 56px;
}

.emg-stack__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-stack__eyebrow::before,
.emg-stack__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-stack__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.emg-stack__h2 em { font-style: normal; color: var(--emg-orange); }
.emg-stack__h2 span { color: var(--emg-teal); }

.emg-stack__sub {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--emg-text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

/* Category rows */
.emg-stack__categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--emg-divider-light);
    border-radius: 8px;
    overflow: hidden;
}

.emg-stack__row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
    padding: 28px 32px;
    background: var(--emg-white);
    transition: background 0.2s;
}

.emg-stack__row:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 760px) {
    .emg-stack__row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 24px;
    }
}

/* Category label (left side) */
.emg-stack__label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.emg-stack__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--emg-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emg-stack__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.emg-stack__category {
    font-family: var(--emg-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--emg-text-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Tools list (right side) */
.emg-stack__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.emg-stack__tool {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--emg-bg-light);
    border: 1px solid var(--emg-border-light);
    border-radius: 100px;
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--emg-text-body);
    transition: all 0.2s;
    white-space: nowrap;
}

.emg-stack__row:hover .emg-stack__tool {
    border-color: var(--emg-divider-light);
}

.emg-stack__tool--more {
    background: transparent;
    border: 1px dashed var(--emg-divider-light);
    color: var(--emg-text-subtle);
    font-style: italic;
    font-weight: 500;
}

/* Bottom note */
.emg-stack__note {
    text-align: center;
    margin-top: 36px;
    font-family: var(--emg-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--emg-text-subtle);
    line-height: 1.6;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.emg-stack__note em {
    font-style: normal;
    color: var(--emg-orange);
    font-weight: 600;
}/* ============================================================
   SECTION — Press / Media Featured
   ============================================================ */

.emg-press {
    background: var(--emg-bg-light);
    padding: 96px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--emg-border-light);
    border-bottom: 1px solid var(--emg-border-light);
}

.emg-press::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(45, 106, 143, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.emg-press__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Header */
.emg-press__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;                         /* was 10px */
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 18px;                     /* was 14px */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-press__eyebrow::before,
.emg-press__eyebrow::after {
    content: '';
    display: block;
    width: 32px;                             /* was 28px */
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-press__h2 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);    /* was clamp(1.4rem, 2.5vw, 1.9rem) */
    font-weight: 800;                        /* was 700 */
    color: var(--emg-text-dark);
    line-height: 1.05;                       /* was 1.2 */
    letter-spacing: -0.02em;                 /* was -0.01em */
    margin: 0 0 48px;                        /* was 0 0 36px */
}

.emg-press__h2 em { font-style: normal; color: var(--emg-orange); }
.emg-press__h2 span { color: var(--emg-teal); }

/* Logo / placeholder grid */
.emg-press__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
}

@media (max-width: 720px) {
    .emg-press__grid { gap: 12px 18px; }
}

/* Item — wraps both image and placeholder versions */
.emg-press__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 72px;                    /* was 44px */
    transition: opacity 0.2s, filter 0.2s, transform 0.2s;
    text-decoration: none;
}

.emg-press__item img {
    max-height: 72px;                /* was 44px */
    max-width: 240px;                /* was 180px */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s;
}

.emg-press__item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Placeholder pill (when no logo image yet) */
.emg-press__placeholder {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 72px;                    /* was 44px */
    padding: 8px 22px;               /* was 6px 18px */
    border: 1px solid var(--emg-divider-light);
    border-radius: 4px;
    background: var(--emg-white);
    transition: all 0.25s;
    text-align: center;
}

.emg-press__placeholder:hover {
    border-color: var(--emg-orange);
    transform: translateY(-1px);
}

.emg-press__placeholder-name {
    font-family: var(--emg-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--emg-text-dark);
    line-height: 1.1;
}

.emg-press__placeholder-meta {
    font-family: var(--emg-font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emg-text-subtle);
    line-height: 1;
    margin-top: 3px;
}/* ============================================================
   PAGE — Case Studies
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────── */

.emg-cs-hero {
    min-height: 70vh;
    background: var(--emg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--emg-font-body);
    width: 100%;
    padding: 140px 6vw 100px;
    text-align: center;
}

@media (max-width: 720px) {
    .emg-cs-hero {
        min-height: 60vh;
        padding: 110px 5vw 72px;
    }
}

.emg-cs-hero__accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--emg-orange);
    z-index: 3;
}

.emg-cs-hero__dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.emg-cs-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(224, 122, 58, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.emg-cs-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

.emg-cs-hero__eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emg-cs-hero__eyebrow::before,
.emg-cs-hero__eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emg-orange);
    opacity: 0.5;
}

.emg-cs-hero h1 {
    font-family: var(--emg-font-heading);
    font-size: clamp(2.4rem, 4.5vw, 4.4rem);
    font-weight: 800;
    color: var(--emg-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
}

.emg-cs-hero h1 em { font-style: normal; color: var(--emg-orange); }
.emg-cs-hero h1 span { color: var(--emg-teal); }

.emg-cs-hero__sub {
    font-family: var(--emg-font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 44px;
}

.emg-cs-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 720px;
    margin: 0 auto 44px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .emg-cs-hero__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.emg-cs-hero__stat-value {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: var(--emg-orange);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.emg-cs-hero__stat-label {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.emg-cs-hero__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.emg-cs-hero__btns svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}


/* ── Case Study Card ──────────────────────────────────── */

.emg-cs {
    padding: 110px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

.emg-cs--white {
    background: var(--emg-white);
}

.emg-cs--beige {
    background: var(--emg-bg-light);
}

.emg-cs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(224, 122, 58, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.emg-cs__inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tags row above the card */
.emg-cs__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.emg-cs__tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
}

.emg-cs__tag--tier {
    background: var(--emg-orange);
    color: var(--emg-white);
}

.emg-cs__tag--pillar {
    background: transparent;
    color: var(--emg-text-body);
    border: 1px solid var(--emg-divider-light);
}

.emg-cs--beige .emg-cs__tag--pillar {
    background: var(--emg-white);
}

/* Card grid: image side + content side */
.emg-cs__card {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 56px;
    align-items: start;
}

.emg-cs--reverse .emg-cs__card {
    grid-template-columns: 6fr 5fr;
}

.emg-cs--reverse .emg-cs__visual {
    order: 2;
}

.emg-cs--reverse .emg-cs__content {
    order: 1;
}

@media (max-width: 960px) {
    .emg-cs__card {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .emg-cs--reverse .emg-cs__visual {
        order: 1;
    }
    .emg-cs--reverse .emg-cs__content {
        order: 2;
    }
}

/* Visual side */
.emg-cs__visual {
    position: relative;
}

.emg-cs__images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emg-cs__image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: var(--emg-bg-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.emg-cs--beige .emg-cs__image {
    background: var(--emg-white);
}

.emg-cs__image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.emg-cs__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image caption for multi-image case studies */
.emg-cs__image-caption {
    padding: 12px 18px;
    background: var(--emg-dark);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emg-cs__image-caption::before {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: var(--emg-orange);
    flex-shrink: 0;
}

/* Privacy note for redacted images */
.emg-cs__privacy-note {
    margin-top: 14px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--emg-text-subtle);
    font-style: italic;
    text-align: center;
}

.emg-cs--beige .emg-cs__privacy-note {
    background: rgba(0, 0, 0, 0.03);
}

/* Content side */
.emg-cs__content {
    min-width: 0;
}

.emg-cs__title {
    font-family: var(--emg-font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.emg-cs__title em { font-style: normal; color: var(--emg-orange); }
.emg-cs__title span { color: var(--emg-teal); }

.emg-cs__subtitle {
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--emg-text-subtle);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--emg-border-light);
}

/* Section blocks (What/How/Outcomes) */
.emg-cs__block {
    margin-bottom: 28px;
}

.emg-cs__block:last-of-type {
    margin-bottom: 36px;
}

.emg-cs__label {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emg-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-cs__label::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--emg-orange);
}

.emg-cs__text {
    font-family: var(--emg-font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--emg-text-body);
    line-height: 1.75;
    margin: 0 0 14px;
}

.emg-cs__text:last-child {
    margin-bottom: 0;
}

/* Outcomes list */
.emg-cs__outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

@media (max-width: 600px) {
    .emg-cs__outcomes {
        grid-template-columns: 1fr;
    }
}

.emg-cs__outcome {
    padding: 14px 16px;
    background: var(--emg-bg-light);
    border-left: 3px solid var(--emg-orange);
    border-radius: 0 4px 4px 0;
}

.emg-cs--beige .emg-cs__outcome {
    background: var(--emg-white);
}

.emg-cs__outcome-value {
    font-family: var(--emg-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--emg-text-dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.emg-cs__outcome-value em { font-style: normal; color: var(--emg-orange); }

.emg-cs__outcome-label {
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--emg-text-muted);
    line-height: 1.4;
}

/* CTA */
.emg-cs__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.emg-cs__ctas svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;

}/* ============================================================
   SECTION — Grounding Circle (Lead Magnet — white background)
   Replaces the blog section. Single conversion goal: capture email.
   ============================================================ */

.emg-gc {
    background: var(--emg-white);
    padding: 110px 6vw;
    font-family: var(--emg-font-body);
    position: relative;
    overflow: hidden;
}

/* Sage leaf-shape glow on the right */
.emg-gc::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -180px;
    width: 620px;
    height: 740px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(122, 140, 110, 0.08), transparent 70%);
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 0;
}

/* Faint sage dot grid */
.emg-gc::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(122, 140, 110, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.emg-gc-inner {
    max-width: var(--emg-content-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === Header === */
.emg-gc-header {
    text-align: center;
    margin-bottom: 56px;
}

.emg-gc-eyebrow {
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #5C7050;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.emg-gc-eyebrow::before,
.emg-gc-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #5C7050;
    opacity: 0.55;
}

.emg-gc-headline {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--emg-text-dark);
    margin: 0 0 20px;
}

.emg-gc-headline em {
    font-style: italic;
    color: #5C7050;
    font-weight: 300;
}

.emg-gc-sub {
    font-family: var(--emg-font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--emg-text-body);
    max-width: 640px;
    margin: 0 auto;
}

.emg-gc-sub strong {
    color: var(--emg-text-dark);
    font-weight: 600;
}

/* === Main card (split: PDF preview / lead form) === */
.emg-gc-card {
    background: #FAFAF6;
    border: 1px solid rgba(122, 140, 110, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Sage corner accents */
.emg-gc-card::before,
.emg-gc-card::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    pointer-events: none;
    z-index: 3;
}

.emg-gc-card::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid #5C7050;
    border-left: 2px solid #5C7050;
}

.emg-gc-card::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #5C7050;
    border-right: 2px solid #5C7050;
}

/* Split layout: preview pane (left) + offer/form (right) */
.emg-gc-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
    min-height: 540px;
}

@media (max-width: 900px) {
    .emg-gc-split {
        grid-template-columns: 1fr;
    }
}

/* === Left side — guide preview === */
.emg-gc-preview {
    background: linear-gradient(135deg, #2E4636 0%, #1E2F24 100%);
    padding: 48px 40px;
    color: #E8DCC5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background sage radial behind preview content */
.emg-gc-preview::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(168, 190, 155, 0.18), transparent 70%);
    pointer-events: none;
}

.emg-gc-preview-meta {
    position: relative;
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(232, 220, 197, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.emg-gc-preview-meta::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #A8BE9B;
}

.emg-gc-preview-title {
    position: relative;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #E8DCC5;
    margin: 18px 0 12px;
}

.emg-gc-preview-title em {
    font-style: italic;
    color: #A8BE9B;
}

.emg-gc-preview-sub {
    position: relative;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(232, 220, 197, 0.78);
    margin-bottom: 28px;
}

/* Preview features list */
.emg-gc-features {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.emg-gc-features li {
    font-family: var(--emg-font-body);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(232, 220, 197, 0.88);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid rgba(232, 220, 197, 0.08);
}

.emg-gc-features li:last-child {
    border-bottom: none;
}

.emg-gc-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 14px;
    height: 2px;
    background: #A8BE9B;
}

/* "What you get" stats row */
.emg-gc-stats {
    position: relative;
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(232, 220, 197, 0.15);
}

.emg-gc-stat-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #E8DCC5;
    line-height: 1;
}

.emg-gc-stat-label {
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(168, 190, 155, 0.85);
    margin-top: 4px;
}

/* === Right side — offer + form === */
.emg-gc-offer {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FAFAF6;
}

.emg-gc-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--emg-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5C7050;
    padding: 6px 14px;
    border: 1px solid rgba(92, 112, 80, 0.4);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    margin-bottom: 22px;
}

.emg-gc-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5C7050;
}

.emg-gc-offer-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--emg-text-dark);
    margin: 0 0 14px;
}

.emg-gc-offer-title em {
    font-style: italic;
    color: #5C7050;
}

.emg-gc-offer-blurb {
    font-family: var(--emg-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--emg-text-body);
    margin-bottom: 24px;
}

/* === Form === */
.emg-gc-form {
    margin-top: 8px;
}

.emg-gc-field {
    margin-bottom: 14px;
    
}

.emg-gc-input {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(122, 140, 110, 0.45);
    border-radius: 4px;
    font-family: var(--emg-font-body);
    font-size: 15px;
    color: var(--emg-text-dark);
    transition: all 0.2s;
}

.emg-gc-input::placeholder {
    color: #8a8d85;
    opacity: 1;
    font-weight: 400;
}

.emg-gc-input::-webkit-input-placeholder {
    color: #8a8d85;
    opacity: 1;
}

.emg-gc-input::-moz-placeholder {
    color: #8a8d85;
    opacity: 1;
}

.emg-gc-input:-ms-input-placeholder {
    color: #8a8d85;
    opacity: 1;
}

.emg-gc-input:focus {
    outline: none;
    border-color: #5C7050;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(92, 112, 80, 0.12);
}



.emg-gc-submit {
    width: 100%;
    padding: 16px 24px;
    background: #5C7050;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: var(--emg-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emg-gc-submit:hover:not(:disabled) {
    background: #4A5C40;
    transform: translateY(-1px);
}

.emg-gc-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.emg-gc-submit svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

/* === Form fine print + states === */
.emg-gc-fine {
    margin-top: 14px;
    font-family: var(--emg-font-body);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--emg-text-muted);
    text-align: center;
}

/* Success state */
.emg-gc-success {
    display: none;
    padding: 28px 24px;
    background: rgba(92, 112, 80, 0.08);
    border: 1px solid rgba(92, 112, 80, 0.3);
    border-radius: 4px;
    text-align: center;
}

.emg-gc-success.active {
    display: block;
}

.emg-gc-success-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    background: #5C7050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.emg-gc-success-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--emg-text-dark);
    margin-bottom: 8px;
}

.emg-gc-success-text {
    font-family: var(--emg-font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--emg-text-body);
    margin-bottom: 14px;
}

.emg-gc-success-fallback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #5C7050;
    text-decoration: underline;
}

/* Error state */
.emg-gc-error {
    display: none;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(180, 64, 64, 0.06);
    border: 1px solid rgba(180, 64, 64, 0.25);
    border-radius: 4px;
    font-family: var(--emg-font-body);
    font-size: 13px;
    color: #8b3a3a;
}

.emg-gc-error.active {
    display: block;
}

/* === Footnote === */
.emg-gc-foot {
    text-align: center;
    margin-top: 36px;
    font-family: var(--emg-font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--emg-text-muted);
    letter-spacing: 0.04em;
    font-style: italic;
}

.emg-gc-foot a {
    color: #5C7050;
    text-decoration: underline;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 600px) {
    .emg-gc-preview {
        padding: 36px 28px;
    }
    .emg-gc-offer {
        padding: 36px 28px;
    }
    .emg-gc-stats {
        gap: 20px;
    }
}/* ========================================
   FORCE FIX — Grounding Circle inputs
   Higher specificity + !important to win
   against any overrides
   ======================================== */

.emg-gc .emg-gc-form input[type="text"],
.emg-gc .emg-gc-form input[type="email"],
.emg-gc input.emg-gc-input {
    width: 100% !important;
    padding: 14px 18px !important;
    background: #ffffff !important;
    border: 1px solid rgba(122, 140, 110, 0.45) !important;
    border-radius: 4px !important;
    font-family: var(--emg-font-body) !important;
    font-size: 15px !important;
    color: #1f1f1f !important;
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.emg-gc .emg-gc-form input[type="text"]::placeholder,
.emg-gc .emg-gc-form input[type="email"]::placeholder,
.emg-gc input.emg-gc-input::placeholder {
    color: #8a8d85 !important;
    opacity: 1 !important;
}