/* ============================================================
   IPGlobal – Homepage Sections
   ============================================================ */

/* ── Neutralise GeneratePress content wrappers on front page ── */
body.ipg-no-offset .site,
body.ipg-no-offset .site-content,
body.ipg-no-offset .content-area,
body.ipg-no-offset #primary,
body.ipg-no-offset .entry-content,
body.ipg-no-offset .hentry {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* Hide sidebar on front page */
body.ipg-no-offset #secondary,
body.ipg-no-offset .widget-area {
    display: none !important;
}

/* ── Shared section base ── */
.ipg-section {
    width: 100%;
    padding: 80px 0;
}
.ipg-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
@media (max-width: 768px) { .ipg-container { padding: 0 24px; } }

/* ── Section eyebrow + heading ── */
.ipg-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 12px;
}
.ipg-section-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #00d4ff;
    border-radius: 1px;
}
.ipg-section-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 48px;
}

/* ============================================================
   Services section
   ============================================================ */
.ipg-services {
    background: #f7f9fc;
    padding: 80px 0 88px;
}

.ipg-services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}
.ipg-services-header .ipg-section-title {
    color: #0a1628;
    margin-bottom: 0;
}
.ipg-services-viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1a4fa0;
    text-decoration: none;
    white-space: nowrap;
    transition: gap .15s;
    flex-shrink: 0;
}
.ipg-services-viewall:hover { gap: 10px; color: #104488; }
.ipg-services-viewall svg { width: 14px; height: 14px; }

/* ── 6-card grid ── */
.ipg-svc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ipg-svc-card {
    background: #fff;
    border: 1px solid #e4eaf3;
    border-radius: 16px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: box-shadow .22s, transform .22s, border-color .22s;
}
.ipg-svc-card:hover {
    box-shadow: 0 10px 36px rgba(26, 79, 160, .1);
    transform: translateY(-3px);
    border-color: rgba(26, 79, 160, .18);
}

/* ── Icon wrapper ── */
.ipg-svc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.ipg-svc-icon-wrap svg { width: 30px; height: 30px; }

.ipg-svc-icon--blue   { background: #dbeafe; }
.ipg-svc-icon--orange { background: #ffedd5; }
.ipg-svc-icon--purple { background: #ede9fe; }
.ipg-svc-icon--green  { background: #d1fae5; }
.ipg-svc-icon--cyan   { background: #e0f2fe; }
.ipg-svc-icon--rose   { background: #ffe4e6; }

/* ── Card content ── */
.ipg-svc-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 10px;
    line-height: 1.3;
}
.ipg-svc-card-desc {
    font-size: 13.5px;
    color: #5a6a7e;
    line-height: 1.7;
    margin: 0 0 24px;
    flex: 1;
}
.ipg-svc-card-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a4fa0;
    margin-top: auto;
    display: inline-block;
    transition: transform .15s;
}
.ipg-svc-card:hover .ipg-svc-card-link { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .ipg-svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .ipg-services { padding: 56px 0 64px; }
    .ipg-svc-cards { grid-template-columns: 1fr; gap: 14px; }
    .ipg-svc-card  { padding: 24px 20px 22px; }
}


/* ============================================================
   Centred section heading block
   ============================================================ */
.ipg-chead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.ipg-chead .ipg-section-eyebrow {
    justify-content: center;
}
.ipg-chead .ipg-section-title {
    color: #fff;
    margin-bottom: 16px;
}
.ipg-chead-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   Why IPGlobal
   ============================================================ */
.ipg-why {
    background: #070e1c;
    padding: 88px 0;
}

.ipg-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    overflow: hidden;
}

.ipg-why-card {
    background: #0a1628;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: background .2s;
}
.ipg-why-card:hover { background: #0e1d38; }

.ipg-why-icon-wrap {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(0, 212, 255, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, .05);
    margin-bottom: 22px;
    flex-shrink: 0;
}
.ipg-why-icon {
    width: 28px;
    height: 28px;
}

.ipg-why-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}
.ipg-why-body {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.7;
    margin: 0 0 28px;
    flex: 1;
}
.ipg-why-stat {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: #00d4ff;
    letter-spacing: -.02em;
    border-top: 1px solid rgba(0, 212, 255, .15);
    padding-top: 16px;
    margin-top: auto;
}
.ipg-why-stat-sym {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 212, 255, .7);
}

@media (max-width: 1024px) {
    .ipg-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .ipg-why { padding: 64px 0; }
    .ipg-why-grid { grid-template-columns: 1fr; }
    .ipg-why-card { padding: 28px 20px; }
}


/* ============================================================
   Industries
   ============================================================ */
.ipg-industries {
    background: #fff;
    padding: 88px 0;
}
.ipg-industries .ipg-services-header .ipg-section-title {
    color: #0a1628;
}

.ipg-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ipg-ind-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #e4e8f0;
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ipg-ind-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4fa0, #00d4ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}
.ipg-ind-card:hover {
    border-color: rgba(26, 79, 160, .22);
    box-shadow: 0 8px 32px rgba(26, 79, 160, .09);
    transform: translateY(-2px);
}
.ipg-ind-card:hover::before { transform: scaleX(1); }

.ipg-ind-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, .07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ipg-ind-icon-wrap svg { width: 28px; height: 28px; }

.ipg-ind-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 8px;
    line-height: 1.3;
}
.ipg-ind-desc {
    font-size: 13px;
    color: #5a6a7e;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.ipg-ind-arrow {
    font-size: 13px;
    font-weight: 600;
    color: #1a4fa0;
    margin-top: auto;
    display: inline-block;
    transition: transform .15s;
}
.ipg-ind-card:hover .ipg-ind-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .ipg-ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .ipg-industries { padding: 64px 0; }
    .ipg-ind-grid { grid-template-columns: 1fr; gap: 12px; }
    .ipg-ind-card { padding: 22px 20px; }
}


/* ============================================================
   Numbers Band
   ============================================================ */
.ipg-numbers {
    background: linear-gradient(135deg, #0a1628 0%, #060f1e 50%, #0a1628 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.ipg-numbers-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
}
.ipg-numbers-left .ipg-section-title {
    color: #fff;
    margin-bottom: 0;
}

.ipg-numbers-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.ipg-num-item {
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ipg-num-item:nth-child(2) { border-left: none; }
.ipg-num-item:nth-child(3) { border-top: none; }
.ipg-num-item:nth-child(4) { border-left: none; border-top: none; }

.ipg-num-val {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
}
.ipg-num-val.ipg-num-cyan { color: #00d4ff; }
.ipg-num-label {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .42);
    text-transform: uppercase;
    letter-spacing: .08em;
}

@media (max-width: 900px) {
    .ipg-numbers-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .ipg-numbers { padding: 56px 0; }
}


/* ============================================================
   Case Studies
   ============================================================ */
.ipg-cases {
    background: #f2f5f9;
    padding: 88px 0;
}
.ipg-cases .ipg-services-header .ipg-section-title { color: #0a1628; }

.ipg-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ipg-case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e6ee;
    transition: box-shadow .2s, transform .2s;
}
.ipg-case-card:hover {
    box-shadow: 0 12px 40px rgba(10, 22, 40, .1);
    transform: translateY(-3px);
}

.ipg-case-thumb {
    height: 156px;
    display: flex;
    align-items: flex-end;
    padding: 16px 20px;
    position: relative;
}
.ipg-case-thumb--blue      { background: linear-gradient(135deg, #1a4fa0 0%, #0d3070 100%); }
.ipg-case-thumb--teal      { background: linear-gradient(135deg, #0a8a8a 0%, #065f5f 100%); }
.ipg-case-thumb--navy      { background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%); }
.ipg-case-thumb--visa      { background: linear-gradient(135deg, #1A1F71 0%, #0d1455 100%); }
.ipg-case-thumb--unilever  { background: linear-gradient(135deg, #1346A3 0%, #0a3272 100%); }
.ipg-case-thumb--firestone { background: linear-gradient(135deg, #BD1F11 0%, #8a1309 100%); }

.ipg-case-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: rgba(255, 255, 255, .18);
    letter-spacing: .04em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.ipg-case-industry {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .15);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ipg-case-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ipg-case-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 10px;
    line-height: 1.4;
}
.ipg-case-excerpt {
    font-size: 13px;
    color: #5a6a7e;
    line-height: 1.65;
    margin: 0 0 20px;
    flex: 1;
}
.ipg-case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #edf1f6;
}
.ipg-case-result {
    font-size: 11.5px;
    font-weight: 700;
    color: #1a4fa0;
    background: rgba(26, 79, 160, .08);
    padding: 4px 10px;
    border-radius: 20px;
}
.ipg-case-arrow {
    font-size: 12px;
    font-weight: 600;
    color: #1a4fa0;
    display: inline-block;
    transition: transform .15s;
}
.ipg-case-card:hover .ipg-case-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .ipg-cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ipg-cases { padding: 64px 0; }
    .ipg-cases-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Testimonials
   ============================================================ */
.ipg-testimonials {
    background: #060f1e;
    padding: 88px 0;
}

.ipg-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ipg-test-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ipg-test-stars {
    font-size: 14px;
    color: #f5c842;
    letter-spacing: 2px;
}

.ipg-test-quote {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    margin: 0;
    font-style: italic;
    flex: 1;
}

.ipg-test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}
.ipg-test-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a4fa0, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.ipg-test-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.ipg-test-role {
    display: block;
    font-size: 11.5px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .ipg-test-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ipg-testimonials { padding: 64px 0; }
    .ipg-test-grid { grid-template-columns: 1fr; }
    .ipg-test-card { padding: 24px 20px; }
}


/* ============================================================
   Technology Partners
   ============================================================ */
.ipg-partners {
    background: #fff;
    padding: 52px 0;
    border-top: 1px solid #e4eaf2;
    border-bottom: 1px solid #e4eaf2;
}
.ipg-partners-label {
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9aa5b4;
    margin: 0 0 36px;
}

/* ── 6-column logo grid ── */
.ipg-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.ipg-partner-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    border: 1px solid #e8edf4;
    margin: -1px 0 0 -1px;
    transition: background .18s;
}
.ipg-partner-cell:hover { background: #f7f9fc; }

.ipg-partner-name {
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    line-height: 1;
    filter: grayscale(1) opacity(.45);
    transition: filter .2s;
    cursor: default;
    text-align: center;
}
.ipg-partner-cell:hover .ipg-partner-name { filter: grayscale(0) opacity(1); }

.ipg-partner-ekahau {
    background: linear-gradient(90deg, #e53935, #fb8c00, #43a047, #1e88e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ipg-partner-cell:not(:hover) .ipg-partner-ekahau {
    filter: grayscale(1) opacity(.45);
    -webkit-text-fill-color: unset;
    color: #1a1a1a;
    background: none;
}

@media (max-width: 900px) {
    .ipg-partners-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .ipg-partners { padding: 40px 0; }
    .ipg-partners-grid { grid-template-columns: repeat(3, 1fr); }
    .ipg-partner-cell { padding: 18px 10px; }
}


/* ============================================================
   CTA Banner
   ============================================================ */
.ipg-cta {
    background: linear-gradient(135deg, #0d2d70 0%, #1a4fa0 55%, #0d2d70 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.ipg-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 78% 50%, rgba(0, 212, 255, .15) 0%, transparent 60%);
    pointer-events: none;
}
.ipg-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.ipg-cta-text { flex: 1; min-width: 260px; }

.ipg-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.ipg-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .68);
    margin: 0;
}

.ipg-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.ipg-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #fff;
    color: #1a4fa0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, transform .15s;
}
.ipg-cta-btn-primary:hover { background: #eef2ff; transform: translateY(-1px); }

.ipg-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .3);
    white-space: nowrap;
    transition: border-color .15s, color .15s, background .15s;
}
.ipg-cta-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

@media (max-width: 768px) {
    .ipg-cta { padding: 64px 0; }
    .ipg-cta-inner { flex-direction: column; align-items: flex-start; }
    .ipg-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 400px) {
    .ipg-cta-actions { flex-direction: column; width: 100%; }
    .ipg-cta-btn-primary,
    .ipg-cta-btn-ghost { text-align: center; }
}


/* ============================================================
   Pill / badge chip (shared)
   ============================================================ */
.ipg-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(26, 79, 160, .1);
    color: #1a4fa0;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 20px;
}
.ipg-pill--dark {
    background: rgba(0, 212, 255, .12);
    color: #00d4ff;
}


/* ============================================================
   Global Reach
   ============================================================ */
.ipg-reach {
    background: #eef3fb;
    padding: 88px 0;
}

.ipg-reach-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ipg-reach-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0 0 20px;
}
.ipg-reach-desc {
    font-size: 15px;
    color: #5a6a7e;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 480px;
}

/* ── 2×2 stat cards ── */
.ipg-reach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ipg-reach-stat {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 14px rgba(26, 79, 160, .07);
}
.ipg-reach-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -.03em;
    line-height: 1;
}
.ipg-reach-accent { color: #1a4fa0; }
.ipg-reach-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9aa5b4;
}

/* ── Right dark card ── */
.ipg-reach-card {
    background: #070e1c;
    border-radius: 22px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.ipg-reach-bignum {
    font-family: 'Inter', sans-serif;
    font-size: clamp(64px, 8vw, 96px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
}
.ipg-reach-plus { color: #00d4ff; }
.ipg-reach-biglabel {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    margin-top: 8px;
    line-height: 1.5;
}

/* ── Country pills ── */
.ipg-reach-countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.ipg-country-pill {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 100px;
    padding: 9px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .ipg-reach-inner { grid-template-columns: 1fr; gap: 48px; }
    .ipg-reach-card { padding: 36px 28px; }
}
@media (max-width: 560px) {
    .ipg-reach { padding: 64px 0; }
    .ipg-reach-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ipg-reach-stat { padding: 18px 16px; }
    .ipg-reach-countries { grid-template-columns: repeat(2, 1fr); }
    .ipg-reach-card { padding: 28px 20px; gap: 24px; }
}


/* ============================================================
   How We Work
   ============================================================ */
.ipg-howwework {
    background: #070e1c;
    padding: 88px 0;
}

.ipg-hww-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}
.ipg-hww-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin: 0 0 16px;
}
.ipg-hww-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.7;
    margin: 0;
}

/* ── 4-step process ── */
.ipg-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 24px;
    position: relative;
}
.ipg-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, #00d4ff 0%, #1a4fa0 50%, #00d4ff 100%);
    pointer-events: none;
}

.ipg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ipg-step-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #070e1c;
    color: #00d4ff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.ipg-step-node::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(#00d4ff, #1a4fa0, #00d4ff);
    z-index: -1;
}
.ipg-step-node::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #070e1c;
    z-index: -1;
}

.ipg-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}
.ipg-step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.7;
    margin: 0;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .ipg-howwework { padding: 64px 0; }
    .ipg-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 24px;
    }
    .ipg-steps::before { display: none; }
}
@media (max-width: 480px) {
    .ipg-steps { grid-template-columns: 1fr; gap: 40px; }
}


/* ============================================================
   Client Results
   ============================================================ */
.ipg-results {
    background: #fff;
    padding: 88px 0;
}

.ipg-results-header {
    margin-bottom: 56px;
}
.ipg-results-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin: 0;
}

.ipg-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ipg-result-card {
    background: #fff;
    border: 1px solid #e4eaf3;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.ipg-result-card:hover {
    box-shadow: 0 10px 36px rgba(26, 79, 160, .09);
    transform: translateY(-2px);
}

.ipg-result-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.ipg-result-client {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 5px;
    line-height: 1.2;
}
.ipg-result-sector {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1a4fa0;
}
.ipg-result-qdot {
    font-size: 48px;
    font-family: Georgia, 'Times New Roman', serif;
    color: #e4eaf3;
    line-height: .8;
    flex-shrink: 0;
    margin-top: -4px;
}

.ipg-result-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 16px;
}
.ipg-result-accent { color: #1a4fa0; }

.ipg-result-desc {
    font-size: 13.5px;
    color: #5a6a7e;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

@media (max-width: 900px) {
    .ipg-results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ipg-results { padding: 64px 0; }
    .ipg-results-grid { grid-template-columns: 1fr; }
    .ipg-result-card { padding: 24px 20px; }
}


/* ============================================================
   Our Offices
   ============================================================ */
.ipg-offices {
    background: #ffffff;
    padding: 88px 0 80px;
}

.ipg-offices-eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: #eef1fb;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #1a4fa0;
    margin-bottom: 28px;
}

.ipg-offices-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin: 0 0 56px;
}

/* ── 5-col office card grid ── */
.ipg-offices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ipg-office-card {
    background: #f4f6fc;
    border: 1px solid #e6eaf5;
    border-radius: 18px;
    padding: 28px 24px 26px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.ipg-office-card:hover {
    box-shadow: 0 8px 32px rgba(26, 79, 160, .10);
    transform: translateY(-2px);
    border-color: #c8d4ee;
}

.ipg-office-flag {
    display: block;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 20px;
}

.ipg-office-country {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 10px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ipg-office-hq {
    display: inline-block;
    padding: 2px 8px;
    background: #1a4fa0;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: middle;
    flex-shrink: 0;
}

.ipg-office-addr {
    font-size: 13px;
    color: #6a7f96;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .ipg-offices-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .ipg-offices { padding: 64px 0; }
    .ipg-offices-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ipg-offices-title { margin-bottom: 36px; }
}
@media (max-width: 420px) {
    .ipg-offices-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   How We Work — step reveal animation
   ============================================================ */
.ipg-step {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ipg-step.ipg-step--visible {
    opacity: 1;
    transform: translateX(0);
}
/* On mobile steps stack vertically — slide up instead of slide left */
@media (max-width: 768px) {
    .ipg-step {
        transform: translateY(28px);
    }
    .ipg-step.ipg-step--visible {
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .ipg-step,
    .ipg-step.ipg-step--visible { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Trusted Clients Marquee — above case studies
   ============================================================ */
.ipg-clients-marquee {
    background: #fff;
    padding: 72px 0 80px;
    overflow: hidden;
}
.ipg-clients-marquee-head {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}
.ipg-clients-marquee-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1a4fa0;
    margin: 0 0 14px;
}
.ipg-clients-marquee-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #1a4fa0;
    border-radius: 1px;
}
.ipg-clients-marquee-h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    color: #0a1628;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0;
}
.ipg-clients-track-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}
.ipg-clients-track-wrap::before,
.ipg-clients-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}
.ipg-clients-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.ipg-clients-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}
.ipg-clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 10px 0;
    will-change: transform;
}
.ipg-clients-track--left  { animation: ipg-clients-left  35s linear infinite; animation-delay: -17.5s; }
.ipg-clients-track--right { animation: ipg-clients-right 35s linear infinite; animation-delay: -17.5s; }
.ipg-clients-track:hover  { animation-play-state: paused; }
@keyframes ipg-clients-left  {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes ipg-clients-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
.ipg-clients-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
    white-space: nowrap;
    background: #fff;
    border: 1.5px solid #e4eaf3;
    border-radius: 10px;
    margin: 0 8px;
    transition: border-color .2s, color .2s;
}
.ipg-clients-item:hover { border-color: #1a4fa0; color: #1a4fa0; }
.ipg-clients-sep {
    color: #c8d4e4;
    font-size: 20px;
    flex-shrink: 0;
    padding: 0 4px;
}
@media (prefers-reduced-motion: reduce) {
    .ipg-clients-track { animation: none; }
}

/* ============================================================
   Marquee strip — between hero and services
   ============================================================ */
.ipg-marquee-bar {
    background: #0a1628;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.ipg-marquee-bar::before,
.ipg-marquee-bar::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.ipg-marquee-bar::before {
    left: 0;
    background: linear-gradient(to right, #0a1628, transparent);
}
.ipg-marquee-bar::after {
    right: 0;
    background: linear-gradient(to left, #0a1628, transparent);
}
.ipg-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 18px 0;
    animation: ipg-scroll 40s linear infinite;
    will-change: transform;
}
.ipg-marquee-track:hover { animation-play-state: paused; }
.ipg-marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.72);
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ipg-marquee-sep {
    color: #00d4ff;
    font-size: 18px;
    line-height: 1;
    opacity: .6;
    flex-shrink: 0;
}
@keyframes ipg-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ipg-marquee-track { animation: none; }
}
