/* ── Scope wrapper ── */
.new-dirsp-outer {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    position: relative;
    --ems-primary:   #023c96;
    --ems-accent:    #0f52b8;
    --ems-secondary: #8e8f94;
}
.new-dirsp-outer * { box-sizing: border-box; margin: 0; padding: 0; }

/* Ambient glows */
.new-dirsp-outer .ambient-glow {
    position: absolute; top: -10vw; left: -10vw;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(2,60,150,0.05) 0%, transparent 60%);
    filter: blur(80px); z-index: 0; pointer-events: none;
    animation: dirspFloat 15s ease-in-out infinite alternate;
}
.new-dirsp-outer .ambient-glow.right {
    top: auto; bottom: -10vw; left: auto; right: -10vw;
    background: radial-gradient(circle, rgba(15,82,184,0.03) 0%, transparent 60%);
    animation-delay: -5s;
}
@keyframes dirspFloat {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(5vw,5vw) scale(1.1); }
    100% { transform: translate(-5vw,10vw) scale(0.9); }
}

/* Container */
.new-dirsp-outer .container {
    width: 100%; max-width: 1200px;
    margin: 0 auto; padding: 3rem 2rem; position: relative; z-index: 1;
}

/* Typography */
.new-dirsp-outer h1,
.new-dirsp-outer h2,
.new-dirsp-outer h3,
.new-dirsp-outer h4 {
    font-weight: 800; line-height: 1.2;
    margin-bottom: 1rem; color: var(--ems-primary); letter-spacing: -0.02em;
}
.new-dirsp-outer h2.gradient-text,
.new-dirsp-outer h3.gradient-text {
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.new-dirsp-outer p { color: #555555; margin-bottom: 1.5rem; font-size: 1.125rem; font-weight: 400; }
.new-dirsp-outer strong { color: var(--ems-primary); font-weight: 800; }

/* ── Hero ── */
.new-dirsp-outer .hero {
    position: relative; display: flex; align-items: center;
    justify-content: center; text-align: center;
    padding-top: 6rem; padding-bottom: 2rem;
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%); overflow: hidden;
}
.new-dirsp-outer .hero-grid-bg {
    position: absolute; bottom: -20%; left: -50%; width: 200%; height: 100%;
    background-image: linear-gradient(rgba(2,60,150,0.1) 2px, transparent 2px),
                      linear-gradient(90deg, rgba(2,60,150,0.1) 2px, transparent 2px);
    background-size: 60px 60px; transform-origin: bottom center;
    transform: perspective(600px) rotateX(75deg);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    animation: dirspGridMove 10s linear infinite; pointer-events: none; z-index: 0;
}
@keyframes dirspGridMove {
    0%   { transform: perspective(600px) rotateX(75deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(75deg) translateY(60px); }
}
.new-dirsp-outer .hero-glow {
    position: absolute; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(2,60,150,0.08) 0%, rgba(255,255,255,0) 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; pointer-events: none;
}
.new-dirsp-outer .hero-content { max-width: 900px; z-index: 10; }
.new-dirsp-outer .badge {
    display: inline-block; padding: 8px 24px; border-radius: 50px;
    background: rgba(2,60,150,0.05); border: 1px solid rgba(2,60,150,0.25);
    color: var(--ems-primary); text-transform: uppercase; letter-spacing: 0.1em;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 2rem;
    animation: dirspPulseBadge 3s infinite alternate;
}
@keyframes dirspPulseBadge {
    from { box-shadow: 0 0 10px rgba(2,60,150,0.02); }
    to   { box-shadow: 0 0 25px rgba(2,60,150,0.10); }
}
.new-dirsp-outer .hero h1 {
    font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.new-dirsp-outer .hero .intro-text {
    font-size: 1.35rem; color: var(--ems-secondary); margin-bottom: 2rem; line-height: 1.5; font-weight: 500;
}

/* ── Split Layouts ── */
.new-dirsp-outer .section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.new-dirsp-outer .section-split.reverse { direction: rtl; }
.new-dirsp-outer .section-split.reverse > * { direction: ltr; }
.new-dirsp-outer .content-box { padding-right: 2rem; }
.new-dirsp-outer .section-title { font-size: clamp(2rem,4vw,3rem); margin-bottom: 2rem; line-height: 1.1; }

/* ── Visual Box ── */
.new-dirsp-outer .visual-box {
    position: relative; background: linear-gradient(145deg,#f5f8fc,#ffffff);
    border-radius: 24px; padding: 2.5rem;
    border: 1px solid rgba(2,60,150,0.3); box-shadow: 0 15px 35px rgba(2,60,150,0.05);
    overflow: hidden; z-index: 1;
}
.new-dirsp-outer .visual-box::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(2,60,150,0.03) 0%, transparent 50%);
    animation: dirspRotateBG 20s linear infinite; pointer-events: none; z-index: -1;
}
@keyframes dirspRotateBG { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ── Arrow List ── */
.new-dirsp-outer .list-items { list-style: none; margin-top: 2rem; }
.new-dirsp-outer .list-items li {
    position: relative; padding-left: 2.5rem; margin-bottom: 1rem;
    color: #555555; font-size: 1.15rem; font-weight: 400;
}
.new-dirsp-outer .list-items li::before {
    content: '→'; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); color: var(--ems-primary); font-weight: 800;
}

/* ── Plain Bullet List (Section 3) ── */
.new-dirsp-outer .bullet-list {
    padding-left: 1.5rem; color: #555555;
    font-size: 1.125rem; margin-bottom: 1.5rem;
}
.new-dirsp-outer .bullet-list li { margin-bottom: 0.25rem; }

/* ── Highlight Quote ── */
.new-dirsp-outer .highlight-quote {
    background: rgba(2,60,150,0.03); border-left: 4px solid var(--ems-primary);
    padding: 1.5rem 2rem; border-radius: 0 16px 16px 0;
    margin: 2rem 0; font-size: 1.25rem; font-style: italic;
    color: var(--ems-primary); font-weight: 500;
}
/* Round-border full-width variant (Section 6) */
.new-dirsp-outer .highlight-quote.round {
    background: transparent; border: 1px solid rgba(2,60,150,0.3);
    border-left-width: 1px; border-radius: 16px;
}

/* ── Grid ── */
.new-dirsp-outer .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }

/* ── Feature Cards ── */
.new-dirsp-outer .feature-card {
    background: #ffffff; border: 1px solid rgba(2,60,150,0.3); border-radius: 20px;
    padding: 2.5rem 2rem; transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
    box-shadow: 0 10px 20px rgba(2,60,150,0.02); position: relative; z-index: 1;
}
.new-dirsp-outer .feature-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px;
    background: linear-gradient(135deg,rgba(2,60,150,0.03),transparent);
    z-index: -1; opacity: 0; transition: opacity 0.4s;
}
.new-dirsp-outer .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(2,60,150,0.08); border-color: rgba(2,60,150,0.15); }
.new-dirsp-outer .feature-card:hover::before { opacity: 1; }
.new-dirsp-outer .feature-card h3 { color: var(--ems-primary); font-size: 1.4rem; margin-bottom: 1rem; }

/* ── Reveal ── */
.new-dirsp-outer .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.new-dirsp-outer .reveal.active { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 992px) {
    .new-dirsp-outer .section-split { grid-template-columns: 1fr; gap: 3rem; }
    .new-dirsp-outer .section-split.reverse { direction: ltr; }
    .new-dirsp-outer .content-box { padding-right: 0; }
    .new-dirsp-outer .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .new-dirsp-outer .grid-3 { grid-template-columns: 1fr; }
    .new-dirsp-outer .container { padding: 4rem 1.5rem; }
    .new-dirsp-outer p { font-size: 1rem; }
    .new-dirsp-outer .visual-box { padding: 1.75rem 1.25rem; }
    .new-dirsp-outer .hero h1 { font-size: 2.2rem; }
    .new-dirsp-outer .highlight-quote { font-size: 1.1rem; padding: 1.25rem 1.5rem; }
}
