/**
 * Trainer Hisham Profile — Formal Professional (v1.14.0)
 * Palette: blue / cyan / green only (no purple/pink/amber/peach)
 * Previous "playful" variables are redirected to formal equivalents so
 * existing selectors keep working without touching every one.
 */

/* =====================================================
   BASE + PALETTE (formal: blue / cyan / green)
   ===================================================== */
.hp-page {
    --hp-brand:       #2f5aae;  /* primary blue */
    --hp-brand-light: #4169b0;  /* blue-400 */
    --hp-navy:        #1e3a6f;  /* deep navy */
    --hp-green:       #27ae60;  /* primary green */
    --hp-green-dark:  #15803d;  /* emerald-700 */
    --hp-cyan:        #0891b2;  /* primary cyan */
    --hp-cyan-light:  #06b6d4;  /* cyan-400 */
    --hp-teal:        #0d9488;  /* teal-600 */
    /* Legacy playful vars — redirected to formal tones.
       Keeps all existing `var(--hp-purple|pink|amber|peach)` selectors
       on-palette without having to rewrite every blob/badge rule. */
    --hp-purple:      #1e3a6f;  /* was #7c3aed → navy */
    --hp-pink:        #06b6d4;  /* was #ec4899 → cyan-light */
    --hp-amber:       #0d9488;  /* was #f59e0b → teal */
    --hp-peach:       #3b82f6;  /* was #fb923c → blue-500 */
    --hp-dark:        #0c1a2a;
    --hp-body:        #475569;
    --hp-cream:       #e0f2fe;  /* was warm yellow → sky-blue tint */
    --hp-bg:          #f8fafc;
    --hp-line:        #e5e7eb;
    --hp-radius:      18px;
    --hp-radius-xl:   32px;
    --hp-radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;
    --hp-ease:        cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Tajawal', 'Cairo', sans-serif;
    color: var(--hp-dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}
.hp-page * { box-sizing: border-box; }
.hp-page .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-hp-reveal] {
    opacity: 0;
    transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
    transition-delay: calc(var(--stagger-i, 0) * 80ms);
    will-change: opacity, transform;
}
[data-hp-reveal="fade-up"]   { transform: translateY(40px); }
[data-hp-reveal="fade-left"] { transform: translateX(-40px); }
[data-hp-reveal="zoom"]      { transform: scale(0.88); }
[data-hp-reveal="rotate"]    { transform: rotate(-5deg) scale(0.9); }
[data-hp-reveal].is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
}

/* =====================================================
   DECORATIVE SHAPES — blobs / confetti / waves
   ===================================================== */
.hp-blob {
    position: absolute;
    border-radius: var(--hp-radius-blob);
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
    animation: hpBlobMorph 14s ease-in-out infinite, hpBlobFloat 18s ease-in-out infinite;
}
@keyframes hpBlobMorph {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    25%      { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
    50%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    75%      { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }
}
@keyframes hpBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -20px) scale(1.08); }
}

/* Confetti dots background layer */
.hp-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(30, 58, 111, 0.35) 0, rgba(30, 58, 111, 0) 6px),
        radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.35) 0, rgba(6, 182, 212, 0) 5px),
        radial-gradient(circle at 25% 85%, rgba(39, 174, 96, 0.4) 0, rgba(39, 174, 96, 0) 5px),
        radial-gradient(circle at 70% 75%, rgba(13, 148, 136, 0.4) 0, rgba(13, 148, 136, 0) 4px),
        radial-gradient(circle at 50% 50%, rgba(47, 90, 174, 0.3) 0, rgba(47, 90, 174, 0) 4px),
        radial-gradient(circle at 15% 55%, rgba(8, 145, 178, 0.35) 0, rgba(8, 145, 178, 0) 5px),
        radial-gradient(circle at 90% 60%, rgba(251, 146, 60, 0.35) 0, rgba(251, 146, 60, 0) 4px);
}

/* Wavy divider */
.hp-wave { position: absolute; left: 0; right: 0; pointer-events: none; z-index: 2; line-height: 0; }
.hp-wave--bottom { bottom: -1px; }
.hp-wave svg { display: block; width: 100%; height: 60px; }
.hp-wave svg path { fill: #fff; }

/* =====================================================
   SECTION HEAD
   ===================================================== */
.hp-section-head { text-align: center; margin-bottom: 48px; position: relative; z-index: 2; }
.hp-section-eyebrow {
    display: inline-block;
    background: #fff;
    color: var(--hp-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 4px 4px 0 var(--hp-brand);
    border: 2px dashed rgba(47, 90, 174, 0.25);
    margin-bottom: 16px;
}
.hp-section-title {
    font-size: clamp(24px, 3.4vw, 38px);
    font-weight: 900;
    color: var(--hp-dark);
    margin: 0;
    line-height: 1.3;
}
.hp-section-title--light { color: #fff; }
.hp-section-head--light .hp-section-eyebrow {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    box-shadow: 4px 4px 0 rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
}

/* =====================================================
   TILT CARD SYSTEM
   ===================================================== */
.hp-card--tilt {
    --tilt: -1.2deg;
    transform: rotate(var(--tilt));
    transition: transform 0.4s var(--hp-ease);
}
.hp-card--tilt:nth-child(2n)   { --tilt: 1.2deg; }
.hp-card--tilt:nth-child(3n)   { --tilt: -0.7deg; }
.hp-card--tilt:nth-child(4n+1) { --tilt: 1.6deg; }
.hp-card--tilt:hover { --tilt: 0deg; transform: rotate(0) translateY(-8px); }

/* Revealed cards shouldn't lose their tilt */
.hp-card--tilt.is-revealed { transform: rotate(var(--tilt)); }
.hp-card--tilt.is-revealed:hover { transform: rotate(0) translateY(-8px); }

/* =====================================================
   BUTTONS
   ===================================================== */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease);
    white-space: nowrap;
}
.hp-btn--primary {
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-cyan));
    color: #fff;
    box-shadow: 4px 4px 0 var(--hp-dark);
}
.hp-btn--primary:hover { transform: translate(-2px, -2px); color: #fff; box-shadow: 6px 6px 0 var(--hp-dark); }
.hp-btn--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 4px 4px 0 #0b4a38;
}
.hp-btn--wa:hover { transform: translate(-2px, -2px); color: #fff; box-shadow: 6px 6px 0 #0b4a38; }
.hp-btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* =====================================================
   1. HERO (playful asymmetric)
   ===================================================== */
.hp-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(160deg, #e0f2fe 0%, #dbeafe 35%, #cffafe 70%, #ecfdf5 100%);
    overflow: hidden;
}
.hp-hero__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-hero__canvas .hp-blob--a { width: 520px; height: 520px; top: -120px; right: -100px; background: var(--hp-brand); }
.hp-hero__canvas .hp-blob--b { width: 380px; height: 380px; bottom: -80px; left: -80px; background: var(--hp-pink); }
.hp-hero__canvas .hp-blob--c { width: 260px; height: 260px; top: 45%; left: 30%; background: var(--hp-amber); animation-delay: -6s; }
.hp-hero__canvas .hp-confetti--hero { opacity: 0.6; }

.hp-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Photo with blob shape */
.hp-hero__media { display: flex; justify-content: center; }
.hp-hero__blob-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
}
.hp-hero__orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hp-hero__orbit--1 {
    inset: -20px;
    border: 3px dashed rgba(47, 90, 174, 0.35);
    animation: hpOrbit 30s linear infinite;
}
.hp-hero__orbit--2 {
    inset: -50px;
    border: 2px dotted rgba(6, 182, 212, 0.4);
    animation: hpOrbit 45s linear infinite reverse;
}
@keyframes hpOrbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hp-hero__photo {
    position: absolute;
    inset: 0;
    border-radius: var(--hp-radius-blob);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 60px rgba(12, 26, 42, 0.25);
    animation: hpBlobMorph 18s ease-in-out infinite;
    border: 8px solid #fff;
}
.hp-hero__photo .swiper,
.hp-hero__photo .swiper-wrapper,
.hp-hero__photo .swiper-slide { height: 100%; }
.hp-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hp-hero-swiper__pagination { bottom: 14px !important; }
.hp-hero-swiper__pagination .swiper-pagination-bullet { background: #fff; opacity: 0.6; }
.hp-hero-swiper__pagination .swiper-pagination-bullet-active { opacity: 1; background: var(--hp-amber); width: 28px; border-radius: 5px; }

.hp-hero__sticker {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    color: var(--hp-dark);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 16px;
    box-shadow: 5px 5px 0 currentColor;
    border: 2.5px solid var(--hp-dark);
    animation: hpStickerFloat 4s ease-in-out infinite;
}
.hp-hero__sticker i { font-size: 1.3rem; }
.hp-hero__sticker span b { display: block; font-size: 1rem; color: var(--hp-brand); }
.hp-hero__sticker--tl {
    top: 10px; right: -30px;
    color: var(--hp-brand);
    transform: rotate(-6deg);
}
.hp-hero__sticker--br {
    bottom: 20px; left: -30px;
    color: var(--hp-green);
    transform: rotate(6deg);
    animation-delay: -2s;
}
.hp-hero__sticker--br span b { color: var(--hp-green); }
@keyframes hpStickerFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -8px; }
}

/* Platform logo floats around photo */
.hp-hero__float {
    position: absolute;
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 22px rgba(12, 26, 42, 0.18);
    animation: hpFloat 5s ease-in-out infinite;
}
.hp-hero__float--ig { top: 15%; left: -10px; color: #e1306c; animation-delay: -1s; }
.hp-hero__float--tw { top: 70%; right: -15px; color: #1d9bf0; animation-delay: -2s; }
.hp-hero__float--yt { bottom: 5%; right: 30%; color: #ff0000; animation-delay: -3s; }
.hp-hero__float--tk { top: 45%; left: -25px; color: #000; animation-delay: -4s; }
@keyframes hpFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* Hero text side */
.hp-hero__info { text-align: right; }
.hp-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #fff;
    color: var(--hp-brand);
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: 30px;
    box-shadow: 4px 4px 0 var(--hp-brand);
    border: 2px dashed rgba(47, 90, 174, 0.3);
    margin-bottom: 22px;
}
.hp-hero__kicker-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--hp-green);
    animation: hpPulse 1.4s ease-in-out infinite;
}
@keyframes hpPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
}
.hp-hero__name {
    font-size: clamp(28px, 4.2vw, 50px);
    font-weight: 900;
    color: var(--hp-dark);
    margin: 0 0 14px;
    line-height: 1.25;
}
.hp-hero__role {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-green));
    color: #fff;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 22px;
    box-shadow: 4px 4px 0 rgba(12, 26, 42, 0.25);
}
.hp-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hp-hero__bullets li {
    --b-color: var(--hp-brand);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 14px;
    border-right: 3px solid var(--b-color);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hp-dark);
    box-shadow: 3px 3px 0 color-mix(in srgb, var(--b-color) 30%, transparent);
}
.hp-hero__bullet-ic {
    display: inline-flex;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--b-color) 15%, #fff);
    color: var(--b-color);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================
   2. INTRO (bio card with tape stickers)
   ===================================================== */
.hp-intro {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #fff 0%, #f0f6ff 50%, #ecfdf5 100%);
    overflow: hidden;
}
.hp-intro__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-intro .hp-blob--d { width: 380px; height: 380px; top: 10%; left: -80px; background: var(--hp-purple); }
.hp-intro .hp-blob--e { width: 320px; height: 320px; bottom: -60px; right: -60px; background: var(--hp-green); }
.hp-intro__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.hp-intro__media { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.hp-intro__photo-wrap {
    position: relative;
    max-width: 400px;
    width: 100%;
    transform: rotate(-2deg);
    transition: transform 0.4s var(--hp-ease);
}
.hp-intro__photo-wrap:hover { transform: rotate(0); }
.hp-intro__photo-wrap img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 24px 50px rgba(12, 26, 42, 0.25);
    display: block;
}
.hp-intro__tape {
    position: absolute;
    width: 100px;
    height: 30px;
    background: rgba(13, 148, 136, 0.5);
    border: 1px dashed rgba(0, 0, 0, 0.15);
    z-index: 3;
}
.hp-intro__tape--tl { top: -14px; left: 40px; transform: rotate(-16deg); }
.hp-intro__tape--br { bottom: -14px; right: 40px; transform: rotate(12deg); background: rgba(6, 182, 212, 0.45); }

.hp-intro__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}
.hp-intro__stat {
    flex: 1 1 calc(50% - 10px);
    min-width: 110px;
    padding: 14px 10px;
    background: #fff;
    border: 2px dashed rgba(47, 90, 174, 0.25);
    border-radius: 16px;
    text-align: center;
    box-shadow: 3px 3px 0 var(--hp-brand);
    transition: transform 0.25s var(--hp-ease);
}
.hp-intro__stat:hover { transform: translateY(-4px); }
.hp-intro__stat:nth-child(2) { border-color: rgba(39, 174, 96, 0.25); box-shadow-color: var(--hp-green); box-shadow: 3px 3px 0 var(--hp-green); }
.hp-intro__stat:nth-child(3) { border-color: rgba(13, 148, 136, 0.25); box-shadow: 3px 3px 0 var(--hp-amber); }
.hp-intro__stat b {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-intro__stat span { display: block; font-size: 0.8rem; font-weight: 700; color: var(--hp-body); margin-top: 4px; }

.hp-intro__body { text-align: right; }
.hp-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: #fff;
    color: var(--hp-brand);
    font-weight: 800;
    font-size: 0.92rem;
    border-radius: 30px;
    box-shadow: 4px 4px 0 var(--hp-amber);
    border: 2px dashed rgba(47, 90, 174, 0.25);
    margin-bottom: 20px;
}
.hp-intro__badge-emoji { font-size: 1.3rem; }
.hp-intro__title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 900;
    color: var(--hp-dark);
    margin: 0 0 24px;
    line-height: 1.3;
}
.hp-intro__title-accent {
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.hp-intro__text {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--hp-body);
    margin: 0 0 14px;
    font-weight: 600;
}
.hp-intro__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hp-intro__chip {
    --c: var(--hp-brand);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    background: #fff;
    color: var(--c);
    border: 2px solid color-mix(in srgb, var(--c) 25%, transparent);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 3px 3px 0 color-mix(in srgb, var(--c) 30%, transparent);
    transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease);
}
.hp-intro__chip-ic {
    display: inline-flex;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--c) 20%, #fff), color-mix(in srgb, var(--c) 35%, #fff));
    color: var(--c);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s var(--hp-ease);
}
.hp-intro__chip:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 color-mix(in srgb, var(--c) 40%, transparent);
}
.hp-intro__chip:hover .hp-intro__chip-ic { transform: rotate(-15deg) scale(1.1); }
.hp-intro__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* =====================================================
   3. TRAINING BODIES (tilted cards grid)
   ===================================================== */
.hp-bodies {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, var(--hp-cream) 0%, #fff 50%, #dbeafe 100%);
    overflow: hidden;
}
.hp-bodies__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-bodies .hp-blob--f { width: 340px; height: 340px; top: -80px; right: -60px; background: var(--hp-brand); }
.hp-bodies .hp-blob--g { width: 280px; height: 280px; bottom: -40px; left: -40px; background: var(--hp-green); }

.hp-bodies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto 48px;
}
.hp-body-card {
    --c: var(--hp-brand);
    position: relative;
    padding: 24px 20px;
    background: #fff;
    border: 2px solid color-mix(in srgb, var(--c) 20%, transparent);
    border-radius: 18px;
    box-shadow: 5px 5px 0 color-mix(in srgb, var(--c) 35%, transparent);
    overflow: hidden;
}
.hp-body-card__corner {
    position: absolute;
    top: -30px; right: -30px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--c) 0%, transparent 70%);
    opacity: 0.25;
}
.hp-body-card__ic {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--c) 18%, #fff), color-mix(in srgb, var(--c) 32%, #fff));
    border: 2px solid color-mix(in srgb, var(--c) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.hp-body-card__ic img { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--c) 40%, transparent)); }
/* When a real logo is uploaded, show it bigger without tint/shadow so brand colors stay intact */
.hp-body-card.has-logo .hp-body-card__ic {
    width: 72px; height: 72px;
    background: #ffffff;
    border: 1px solid var(--hp-line);
    padding: 6px;
}
.hp-body-card.has-logo .hp-body-card__ic img { width: 100%; height: 100%; filter: none; }
.hp-body-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--hp-dark);
    margin: 0 0 12px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}
.hp-body-card__meta {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 4px 12px;
    background: color-mix(in srgb, var(--c) 12%, #fff);
    border-radius: 8px;
    border: 1px dashed color-mix(in srgb, var(--c) 35%, transparent);
}
.hp-body-card__count { font-size: 1.2rem; font-weight: 900; color: var(--c); }
.hp-body-card__label { font-size: 0.82rem; font-weight: 700; color: var(--hp-body); }

.hp-bodies__cta {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 2px dashed var(--hp-brand);
    box-shadow: 6px 6px 0 var(--hp-brand);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hp-bodies__cta h3 { font-size: 1.3rem; font-weight: 900; color: var(--hp-dark); margin: 0 0 18px; }

/* =====================================================
   4. STATISTICS (gradient circles + arcs + counter)
   ===================================================== */
.hp-stats {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, #0c1a2a 0%, #1e3a7a 60%, #2f5aae 100%);
    overflow: hidden;
}
.hp-stats__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-stats .hp-blob--h { width: 520px; height: 520px; top: -100px; right: -100px; background: var(--hp-brand); opacity: 0.25; }
.hp-stats .hp-blob--i { width: 360px; height: 360px; bottom: -80px; left: -60px; background: var(--hp-purple); opacity: 0.3; }
.hp-stats .hp-confetti--stats { opacity: 0.4; }

.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.hp-stat {
    --c: var(--hp-amber);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s var(--hp-ease);
}
.hp-stat:hover { transform: translateY(-8px); }
.hp-stat__ring {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
}
.hp-stat__arc {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    pointer-events: none;
}
.hp-stat__arc--1 {
    border-top-color: var(--c);
    border-right-color: var(--c);
    animation: hpArc 8s linear infinite;
}
.hp-stat__arc--2 {
    inset: 10px;
    border-bottom-color: color-mix(in srgb, var(--c) 70%, #fff);
    border-left-color: color-mix(in srgb, var(--c) 70%, #fff);
    animation: hpArc 12s linear infinite reverse;
}
@keyframes hpArc { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.hp-stat__circle {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #000));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px color-mix(in srgb, var(--c) 40%, transparent), inset 0 0 0 4px rgba(255,255,255,0.15);
}
.hp-stat__circle img { width: 50px; height: 50px; object-fit: contain; filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.hp-stat__num {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1;
    font-family: 'Cairo', sans-serif;
}
.hp-stat__label { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 700; margin: 0; }

/* =====================================================
   5. CV (sticker-style tilted grid)
   ===================================================== */
.hp-cv {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #f0f9ff 0%, #fff 50%, #e0f2fe 100%);
    overflow: hidden;
}
.hp-cv__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-cv .hp-blob--j { width: 400px; height: 400px; top: 20%; right: -80px; background: var(--hp-cyan); }

.hp-cv__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}
.hp-cv-card {
    --c: var(--hp-brand);
    padding: 24px 16px;
    background: #fff;
    border: 2px solid color-mix(in srgb, var(--c) 20%, transparent);
    border-radius: 18px;
    text-align: center;
    box-shadow: 4px 4px 0 color-mix(in srgb, var(--c) 35%, transparent);
}
.hp-cv-card__ic {
    width: 68px; height: 68px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--c) 15%, #fff), color-mix(in srgb, var(--c) 30%, #fff));
    border: 2px dashed color-mix(in srgb, var(--c) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-cv-card__ic img { width: 42px; height: 42px; object-fit: contain; }
.hp-cv-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 0;
    line-height: 1.6;
}
.hp-cv-card--pdf {
    --c: var(--hp-brand);
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-green));
    color: #fff;
    text-decoration: none;
    border: none;
}
.hp-cv-card__ic--pdf {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    font-size: 1.8rem;
}
.hp-cv-card__ic--pdf i { color: #fff; }
.hp-cv-card--pdf .hp-cv-card__title { color: #fff; font-weight: 800; }

/* =====================================================
   6. TRAINING PROGRAMS
   ===================================================== */
.hp-training { position: relative; padding: 100px 0; background: #fff; overflow: hidden; }
.hp-training__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-training .hp-blob--k { width: 340px; height: 340px; top: 10%; left: -80px; background: var(--hp-pink); }
.hp-training .hp-blob--l { width: 280px; height: 280px; bottom: -40px; right: -50px; background: var(--hp-cyan); }

.hp-training__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}
.hp-training-card {
    --c: var(--hp-brand);
    background: #fff;
    border: 2px solid color-mix(in srgb, var(--c) 22%, transparent);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 0 color-mix(in srgb, var(--c) 30%, transparent);
    transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease), border-color 0.25s;
}
/* Clickable cards (when ACF link is set on a non-video program) */
a.hp-training-card,
.hp-training-card.is-linked {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.hp-training-card:hover,
.hp-training-card.is-linked:hover {
    transform: translateY(-4px);
    border-color: var(--c);
    box-shadow: 8px 8px 0 var(--c);
}
/* CTA button shown only on video cards that also have a link */
.hp-training-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c) 12%, #fff);
    color: var(--c);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.hp-training-card__cta:hover {
    background: var(--c);
    color: #fff;
}
.hp-training-card__media { aspect-ratio: 16 / 10; background: #000; overflow: hidden; }
.hp-training-card__media img,
.hp-training-card__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-training-card__body {
    padding: 18px 20px;
    text-align: center;
    border-top: 3px dashed color-mix(in srgb, var(--c) 30%, transparent);
}
.hp-training-card__body h3 { font-size: 0.98rem; font-weight: 800; color: var(--hp-dark); margin: 0; line-height: 1.5; }

/* =====================================================
   7. GALLERY (polaroid swiper)
   ===================================================== */
.hp-gallery {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1a2a 0%, #1e3a7a 100%);
    overflow: hidden;
}
.hp-gallery__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-gallery .hp-blob--m { width: 480px; height: 480px; top: -100px; right: -80px; background: var(--hp-amber); opacity: 0.25; }

.hp-gallery-swiper { padding: 20px 60px 60px; overflow: hidden; position: relative; z-index: 2; }
.hp-gallery-swiper .swiper-slide { height: auto; display: flex; }
.hp-gallery__polaroid {
    width: 100%;
    margin: 0;
    padding: 10px 10px 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transform: rotate(-2deg);
    transition: transform 0.4s var(--hp-ease);
}
.hp-gallery__polaroid img { width: 100%; height: 220px; object-fit: cover; display: block; }
.hp-gallery-swiper .swiper-slide:nth-child(2n) .hp-gallery__polaroid { transform: rotate(2deg); }
.hp-gallery-swiper .swiper-slide:nth-child(3n) .hp-gallery__polaroid { transform: rotate(-1deg); }
.hp-gallery__polaroid:hover { transform: rotate(0) scale(1.04); }

.hp-gallery-swiper__prev,
.hp-gallery-swiper__next {
    width: 48px !important; height: 48px !important;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff !important;
    top: 48% !important;
}
.hp-gallery-swiper__prev:hover, .hp-gallery-swiper__next:hover { background: var(--hp-amber); border-color: var(--hp-amber); }
.hp-gallery-swiper__prev::after, .hp-gallery-swiper__next::after { font-size: 18px !important; font-weight: 900; }
.hp-gallery-swiper__pagination { bottom: 10px !important; }
.hp-gallery-swiper__pagination .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.hp-gallery-swiper__pagination .swiper-pagination-bullet-active { opacity: 1; background: var(--hp-amber); width: 28px; border-radius: 5px; }

/* =====================================================
   8. ICON PROGRAMS (blob-shape cards)
   ===================================================== */
.hp-iprogs { position: relative; padding: 100px 0; background: linear-gradient(160deg, #fff, #f8fafc); overflow: hidden; }
.hp-iprogs__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-iprogs .hp-blob--n { width: 380px; height: 380px; top: 10%; right: -90px; background: var(--hp-purple); }
.hp-iprogs .hp-blob--o { width: 300px; height: 300px; bottom: -60px; left: -70px; background: var(--hp-amber); }

.hp-iprogs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.hp-iprog-card {
    --c: var(--hp-brand);
    position: relative;
    padding: 30px 20px;
    background: #fff;
    border: 2px solid color-mix(in srgb, var(--c) 20%, transparent);
    border-radius: 22px;
    text-align: center;
    overflow: hidden;
    box-shadow: 5px 5px 0 color-mix(in srgb, var(--c) 35%, transparent);
}
.hp-iprog-card__blob {
    position: absolute;
    width: 180px; height: 180px;
    top: -60px; left: -60px;
    background: radial-gradient(circle, color-mix(in srgb, var(--c) 22%, transparent), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hp-iprog-card__ic {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #000));
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--c) 40%, transparent);
    transition: transform 0.3s var(--hp-ease);
}
.hp-iprog-card:hover .hp-iprog-card__ic { transform: rotate(-10deg) scale(1.08); }
.hp-iprog-card__ic img { width: 40px; height: 40px; object-fit: contain; filter: brightness(1.1) drop-shadow(0 3px 8px rgba(0,0,0,0.25)); }
.hp-iprog-card p {
    position: relative;
    z-index: 2;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 0;
    line-height: 1.6;
}

/* =====================================================
   9. FEATURES (shaped stickers)
   ===================================================== */
.hp-feats {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-purple));
    color: #fff;
    overflow: hidden;
}
.hp-feats__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-feats .hp-blob--p { width: 500px; height: 500px; top: -100px; left: -80px; background: var(--hp-pink); opacity: 0.35; }
.hp-feats .hp-confetti--feats { opacity: 0.5; }

.hp-feats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}
.hp-feat {
    --c: var(--hp-amber);
    position: relative;
    padding: 30px 22px 26px;
    background: #fff;
    color: var(--hp-dark);
    text-align: center;
    box-shadow: 6px 6px 0 var(--c);
    transition: transform 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease);
}
.hp-feat:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--c); }

/* Unified soft-blob shape for all feature cards (text always fully visible).
   Per-card variation comes from rotation alternating + box-shadow color. */
.hp-feat--cloud,
.hp-feat--blob,
.hp-feat--star,
.hp-feat--hex {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    clip-path: none;
}
.hp-feat:nth-child(2n) { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
.hp-feat:nth-child(3n) { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
.hp-feat:nth-child(4n) { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }

.hp-feat__num {
    position: absolute;
    top: 16px; right: 18px;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--c);
    opacity: 0.6;
}
.hp-feat__ic {
    display: inline-flex;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #000));
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.7rem;
}
.hp-feat p { font-size: 0.96rem; font-weight: 700; margin: 0; line-height: 1.6; }

/* =====================================================
   10. VIDEOS
   ===================================================== */
.hp-videos { position: relative; padding: 100px 0; background: linear-gradient(160deg, #f8fafc, #fff); overflow: hidden; }
.hp-videos__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-videos .hp-blob--q { width: 380px; height: 380px; top: 20%; right: -80px; background: var(--hp-brand); }
.hp-videos .hp-confetti--videos { opacity: 0.35; }

.hp-videos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}
.hp-video-card {
    --c: var(--hp-brand);
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    box-shadow: 4px 4px 0 var(--c), 0 12px 28px color-mix(in srgb, var(--c) 25%, transparent);
    border: 3px solid color-mix(in srgb, var(--c) 35%, transparent);
}
.hp-video-card video { width: 100%; height: 220px; object-fit: cover; display: block; }

/* =====================================================
   11. CURRICULUM TABS (horizontal pills)
   ===================================================== */
.hp-packages {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, #0c1a2a 0%, #1e3a7a 50%, #2f5aae 100%);
    color: #fff;
    overflow: hidden;
}
.hp-packages__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-packages .hp-blob--r { width: 460px; height: 460px; top: -80px; left: -80px; background: var(--hp-pink); opacity: 0.3; }
.hp-packages .hp-blob--s { width: 340px; height: 340px; bottom: -60px; right: -60px; background: var(--hp-amber); opacity: 0.25; }

.hp-tabs { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.hp-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}
.hp-tabs__btn {
    --c: var(--hp-brand);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--hp-ease);
    font-family: inherit;
    backdrop-filter: blur(8px);
}
.hp-tabs__btn-ic {
    display: inline-flex;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--c) 30%, transparent);
    align-items: center;
    justify-content: center;
}
.hp-tabs__btn:hover { background: rgba(255,255,255,0.15); }
.hp-tabs__btn.is-active {
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 65%, #000));
    border-color: var(--c);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--c) 45%, transparent);
    transform: translateY(-3px);
}
.hp-tabs__btn.is-active .hp-tabs__btn-ic { background: rgba(255,255,255,0.22); }

.hp-tabs__stage {
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 36px;
    min-height: 300px;
    backdrop-filter: blur(10px);
}
.hp-tabs__panel { display: none; }
.hp-tabs__panel.is-active {
    display: block;
    animation: hpPanelIn 0.45s var(--hp-ease);
}
@keyframes hpPanelIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hp-tabs__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hp-tabs__cols ul { list-style: none; padding: 0; margin: 0; }
.hp-tabs__cols li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    line-height: 1.7;
    border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.hp-tabs__cols li:last-child { border-bottom: none; }
.hp-tabs__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--c);
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c) 30%, transparent);
}

.hp-packages__cta {
    text-align: center;
    margin-top: 40px;
    padding: 26px;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
}
.hp-packages__cta h3 { color: #fff; font-size: 1.25rem; margin: 0 0 18px; }

/* =====================================================
   12. TESTIMONIALS (tape-sticker videos)
   ===================================================== */
.hp-testimonials { position: relative; padding: 100px 0; background: linear-gradient(160deg, #e0f2fe 0%, #fff 50%, #cffafe 100%); overflow: hidden; }
.hp-testimonials__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-testimonials .hp-blob--t { width: 400px; height: 400px; top: 10%; left: -80px; background: var(--hp-pink); }

.hp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}
.hp-test-card {
    --c: var(--hp-brand);
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    padding: 12px;
    box-shadow: 5px 5px 0 color-mix(in srgb, var(--c) 35%, transparent);
}
.hp-test-card video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    background: #000;
}
.hp-test-card__tape {
    position: absolute;
    top: -14px;
    left: 40%;
    width: 80px; height: 28px;
    background: rgba(13, 148, 136, 0.55);
    border: 1px dashed rgba(0,0,0,0.15);
    transform: rotate(-8deg);
    z-index: 3;
}
.hp-test-card:nth-child(2n) .hp-test-card__tape { left: 50%; background: rgba(6, 182, 212, 0.55); transform: rotate(12deg); }
.hp-test-card:nth-child(3n) .hp-test-card__tape { background: rgba(39, 174, 96, 0.55); transform: rotate(-4deg); }

/* =====================================================
   13. PARTNERS (infinite marquee)
   ===================================================== */
.hp-partners { position: relative; padding: 80px 0; background: #fff; overflow: hidden; }
.hp-marquee {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to left, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.hp-marquee__track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: hpMarquee 30s linear infinite;
}
@keyframes hpMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(50%); }
}
.hp-marquee__item {
    flex: 0 0 160px;
    height: 100px;
    background: #fff;
    border: 2px solid var(--hp-line);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(12, 26, 42, 0.08);
    transition: transform 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease);
}
.hp-marquee__item:hover { transform: translateY(-4px); border-color: var(--hp-brand); }
.hp-marquee__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.25s;
}
.hp-marquee__item:hover img { filter: grayscale(0); }

/* =====================================================
   2.5 / 2.6  PMP + HR SPOTLIGHT SECTIONS
   ===================================================== */
.hp-spotlight {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}
.hp-spotlight--pmp { background: linear-gradient(160deg, #f0f6ff 0%, #fff 60%, #e0f2fe 100%); }
.hp-spotlight--hr  { background: linear-gradient(160deg, #ecfdf5 0%, #fff 60%, #f0f9ff 100%); }
.hp-spotlight__canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hp-spotlight .hp-blob--sp1 { width: 380px; height: 380px; top: -80px; right: -80px; background: var(--hp-brand); opacity: 0.28; }
.hp-spotlight .hp-blob--sp2 { width: 320px; height: 320px; bottom: -80px; left: -60px; background: var(--hp-cyan); opacity: 0.22; }
.hp-spotlight .hp-blob--sp3 { width: 380px; height: 380px; top: -80px; left: -80px; background: var(--hp-green); opacity: 0.25; }
.hp-spotlight .hp-blob--sp4 { width: 320px; height: 320px; bottom: -60px; right: -40px; background: var(--hp-cyan); opacity: 0.22; }

.hp-spotlight__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hp-spotlight--flip .hp-spotlight__grid { grid-template-columns: 1.2fr 0.8fr; }

.hp-spotlight__media {
    display: flex;
    justify-content: center;
}
.hp-spotlight__icon-wrap {
    position: relative;
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: var(--hp-radius-blob);
    background: linear-gradient(135deg, var(--hp-brand), var(--hp-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(47, 90, 174, 0.3);
    animation: hpBlobMorph 16s ease-in-out infinite;
}
.hp-spotlight--hr .hp-spotlight__icon-wrap {
    background: linear-gradient(135deg, var(--hp-green), var(--hp-teal));
    box-shadow: 0 30px 60px rgba(39, 174, 96, 0.28);
}
.hp-spotlight__icon-wrap img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hp-spotlight__badge {
    display: inline-block;
    background: #ffffff;
    color: var(--hp-brand);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 2px dashed var(--hp-brand);
    box-shadow: 3px 3px 0 var(--hp-brand);
    margin-bottom: 18px;
    transform: rotate(-1.5deg);
}
.hp-spotlight__badge--cyan {
    color: var(--hp-cyan);
    border-color: var(--hp-cyan);
    box-shadow: 3px 3px 0 var(--hp-cyan);
}
.hp-spotlight__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--hp-dark);
    line-height: 1.25;
    margin: 0 0 18px;
}
.hp-spotlight__desc {
    font-size: 17px;
    line-height: 1.85;
    color: var(--hp-body);
    margin-bottom: 26px;
}
.hp-spotlight__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}
.hp-spotlight__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--hp-dark);
    line-height: 1.6;
    transition-delay: calc(var(--stagger-i, 0) * 60ms);
}
.hp-spotlight__list li i {
    color: var(--hp-green);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}
.hp-spotlight--hr .hp-spotlight__list li i { color: var(--hp-cyan); }

.hp-spotlight__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hp-spotlight__grid,
    .hp-spotlight--flip .hp-spotlight__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .hp-spotlight__media { order: -1; max-width: 260px; margin: 0 auto; }
    .hp-spotlight__list { grid-template-columns: 1fr; text-align: right; }
    .hp-spotlight__cta { justify-content: center; }
    .hp-spotlight__badge { transform: rotate(0); }
}

/* =====================================================
   9.5  TRAINING OPTIONS (delivery modes)
   ===================================================== */
.hp-topts {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f9ff 0%, #fff 50%, #ecfdf5 100%);
    overflow: hidden;
}
.hp-topts__canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hp-topts .hp-blob--to1 { width: 360px; height: 360px; top: -70px; right: -80px; background: var(--hp-brand); opacity: 0.25; }
.hp-topts .hp-blob--to2 { width: 320px; height: 320px; bottom: -60px; left: -60px; background: var(--hp-green); opacity: 0.25; }
.hp-topts__intro {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 17px;
    line-height: 1.85;
    color: var(--hp-body);
    text-align: center;
}
.hp-topts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}
.hp-topt-card {
    position: relative;
    background: #ffffff;
    padding: 32px 24px 28px;
    border-radius: 22px;
    border: 2px solid var(--hp-line);
    transition: transform 0.3s var(--hp-ease), border-color 0.3s, box-shadow 0.3s;
    text-align: center;
    transition-delay: calc(var(--stagger-i, 0) * 60ms);
    overflow: hidden;
}
.hp-topt-card::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--c), color-mix(in srgb, var(--c) 40%, #fff));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--hp-ease);
}
.hp-topt-card:hover {
    transform: translateY(-6px);
    border-color: var(--c);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--c) 18%, transparent);
}
.hp-topt-card:hover::after { transform: scaleX(1); }

.hp-topt-card__ic {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: color-mix(in srgb, var(--c) 14%, #fff);
    border: 2px dashed var(--c);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-topt-card__ic img { width: 50px; height: 50px; object-fit: contain; }
.hp-topt-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--hp-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.hp-topt-card__desc {
    color: var(--hp-body);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.hp-topt-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c);
    font-weight: 800;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c) 10%, #fff);
    transition: background 0.2s, transform 0.2s;
    font-size: 14px;
}
.hp-topt-card__cta:hover {
    background: var(--c);
    color: #ffffff;
    transform: translateX(-4px);
}

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

/* =====================================================
   15. TIKTOK FOLLOW (end of page)
   ===================================================== */
.hp-tiktok {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0c1a2a 0%, #1e3a7a 100%);
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}
.hp-tiktok::before,
.hp-tiktok::after {
    content: "";
    position: absolute;
    border-radius: var(--hp-radius-blob);
    filter: blur(60px);
    pointer-events: none;
}
.hp-tiktok::before { top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(6, 182, 212, 0.4); }
.hp-tiktok::after  { bottom: -60px; left: -60px; width: 280px; height: 280px; background: rgba(39, 174, 96, 0.35); }
.hp-tiktok__inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 0 20px; }
.hp-tiktok__icon {
    width: 84px; height: 84px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.4);
    border: 3px solid #06b6d4;
}
.hp-tiktok__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.5;
}
.hp-tiktok__subtitle {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 auto 28px;
}
.hp-tiktok__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(6, 182, 212, 0.35);
    transition: transform 0.25s var(--hp-ease), box-shadow 0.25s;
}
.hp-tiktok__btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.5);
}
.hp-tiktok__btn i { font-size: 22px; }

/* =====================================================
   14. CONTACT FOOTER
   ===================================================== */
.hp-contact { position: relative; padding: 90px 0 50px; background: linear-gradient(160deg, #f0f6ff 0%, #fff 50%, #e0f2fe 100%); overflow: hidden; }
.hp-contact__canvas { position: absolute; inset: 0; pointer-events: none; }
.hp-contact .hp-blob--u { width: 360px; height: 360px; top: -80px; right: -80px; background: var(--hp-brand); opacity: 0.3; }
.hp-contact .hp-blob--v { width: 300px; height: 300px; bottom: -60px; left: -50px; background: var(--hp-green); opacity: 0.3; }

.hp-contact__title { text-align: center; font-size: 1.4rem; font-weight: 900; color: var(--hp-dark); margin: 0 0 40px; line-height: 1.6; position: relative; z-index: 2; }
.hp-contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}
/* The 2 row-based grids (emails+website, phone+whatsapp) sit side-by-side */
.hp-contact__grid--web,
.hp-contact__grid--phones {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
}
.hp-contact__grid--phones { margin-bottom: 36px; }

.hp-contact__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 2px dashed color-mix(in srgb, var(--hp-brand) 20%, transparent);
    border-radius: 14px;
    box-shadow: 3px 3px 0 var(--hp-brand);
    transition: transform 0.25s var(--hp-ease);
}
.hp-contact__item:hover { transform: translateY(-3px); }
.hp-contact__item-ic {
    display: inline-flex;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--hp-brand) 15%, #fff);
    color: var(--hp-brand);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-contact__item a { color: var(--hp-dark); font-weight: 700; font-size: 0.95rem; text-decoration: none; }
.hp-contact__item a:hover { color: var(--hp-brand); }

/* Contact items (email/website/phone/whatsapp) — GREEN accent to distinguish
   from program items (blue). Client wants clear visual separation. */
.hp-contact__item--contact {
    border-color: color-mix(in srgb, var(--hp-green) 30%, transparent);
    box-shadow: 3px 3px 0 var(--hp-green);
}
.hp-contact__item--contact .hp-contact__item-ic {
    background: color-mix(in srgb, var(--hp-green) 15%, #fff);
    color: var(--hp-green);
}
.hp-contact__item--contact a:hover { color: var(--hp-green); }

@media (max-width: 720px) {
    .hp-contact__grid,
    .hp-contact__grid--web,
    .hp-contact__grid--phones { grid-template-columns: 1fr; max-width: 420px; }
}

.hp-contact__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.hp-contact__social {
    --bg: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    transition: transform 0.3s var(--hp-ease);
    animation: hpSocialFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--stagger-i, 0) * 0.2s);
}
.hp-contact__social:hover { transform: translateY(-4px) scale(1.1); color: #fff; }
@keyframes hpSocialFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.hp-contact__copyright { text-align: center; color: var(--hp-body); font-size: 0.9rem; margin: 0; position: relative; z-index: 2; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hp-hero { padding: 150px 0 90px; }
    .hp-hero__grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hp-hero__info { text-align: center; }
    .hp-hero__bullets { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .hp-hero__cta { justify-content: center; }
    .hp-intro__grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hp-intro__body { text-align: center; }
    .hp-intro__chips { justify-content: center; }
    .hp-intro__cta { justify-content: center; }
    .hp-bodies__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-cv__grid { grid-template-columns: repeat(3, 1fr); }
    .hp-training__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-iprogs__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-feats__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-videos__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-contact__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-card--tilt { --tilt: 0deg !important; }
}
@media (max-width: 640px) {
    .hp-hero { padding: 130px 0 80px; }
    .hp-hero__sticker { font-size: 0.78rem; padding: 8px 14px; }
    .hp-hero__sticker--tl, .hp-hero__sticker--br { right: -6px; left: auto; }
    .hp-hero__float { width: 44px; height: 44px; font-size: 1.2rem; }
    .hp-intro, .hp-bodies, .hp-cv, .hp-training, .hp-iprogs, .hp-feats, .hp-videos, .hp-testimonials, .hp-contact { padding: 70px 0; }
    .hp-stats, .hp-gallery, .hp-packages { padding: 80px 0; }
    .hp-bodies__grid, .hp-stats__grid, .hp-cv__grid, .hp-training__grid, .hp-iprogs__grid, .hp-feats__grid, .hp-videos__grid, .hp-testimonials__grid, .hp-contact__grid { grid-template-columns: 1fr; }
    .hp-tabs__cols { grid-template-columns: 1fr; }
    .hp-tabs__btn-label { font-size: 0.85rem; }
    .hp-intro__photo-wrap { transform: rotate(0); }
    .hp-hero__name { font-size: 28px; }

    /* Horizontal-shake fix on mobile:
       the blob/float/orbit translate animations push decorative elements
       past the viewport, so the page picks up a horizontal scroll that
       visually "shakes" during animation. Disable the translate + clamp overflow. */
    .hp-blob { animation: hpBlobMorph 14s ease-in-out infinite; }
    .hp-hero__float, .hp-hero__orbit { animation: none; }
    .hp-hero__orbit--1, .hp-hero__orbit--2 { inset: 0; }
    .hp-hero__photo { animation: none; }
}

/* Root-level overflow clamp — prevent any descendant (animated blob, tilt)
   from pushing the page horizontally on small screens. Target this template's
   body class directly so the rule works without :has() fallbacks. */
body.page-template-template-trainer-hisham,
html:has(body.page-template-template-trainer-hisham) {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hp-blob, .hp-hero__sticker, .hp-hero__float, .hp-hero__orbit, .hp-contact__social, .hp-stat__arc, .hp-marquee__track, .hp-hero__photo {
        animation: none !important;
    }
    [data-hp-reveal] { transition: opacity 0.3s ease; transform: none !important; }
}
