/* Layout & Scoping */
.new-lose-profit-outer {
    font-family: 'Inter', sans-serif;
    color: #333333;
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    position: relative;
    background-color: #FFFFFF;
}

.new-lose-profit-outer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ambient Background */
.new-lose-profit-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: floatGlow 15s ease-in-out infinite alternate;
}

.new-lose-profit-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 floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5vw, 5vw) scale(1.1); }
    100% { transform: translate(-5vw, 10vw) scale(0.9); }
}

/* Typography */
.new-lose-profit-outer h1,
.new-lose-profit-outer h2,
.new-lose-profit-outer h3,
.new-lose-profit-outer h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ems-primary);
    letter-spacing: -0.02em;
}

.new-lose-profit-outer h2.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-lose-profit-outer p {
    color: #555555;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.new-lose-profit-outer strong {
    color: var(--ems-primary);
    font-weight: 800;
}

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

/* Hero */
.new-lose-profit-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;
    perspective: 1000px;
}

.new-lose-profit-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);
    z-index: 0;
    -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: gridMove 10s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: perspective(600px) rotateX(75deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(75deg) translateY(60px); }
}

.new-lose-profit-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-lose-profit-outer .hero-content {
    max-width: 900px;
    z-index: 10;
}

.new-lose-profit-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: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
    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-lose-profit-outer .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    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.03em;
    text-transform: uppercase;
}

.new-lose-profit-outer .hero .intro-text {
    font-size: 1.35rem;
    color: #8e8f94;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Nav Grid */
.new-lose-profit-outer .nav-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem auto 2rem;
    max-width: 1200px;
    padding: 0 1.25rem;
    position: relative;
    z-index: 10;
}

.new-lose-profit-outer .nav-link-card {
    background: #ffffff;
    border: 1px solid rgba(2, 60, 150, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.new-lose-profit-outer .nav-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(2, 60, 150, 0.1);
    border-color: rgba(2, 60, 150, 0.2);
}

.new-lose-profit-outer .nav-link-num {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ems-primary), #0a7a6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 60, 150, 0.25);
}

.new-lose-profit-outer .nav-link-text {
    color: var(--ems-primary);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.new-lose-profit-outer .nav-link-card:hover .nav-link-text {
    color: var(--ems-accent);
}

/* Stat Cards */
.new-lose-profit-outer .stat-cards-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.new-lose-profit-outer .stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(2, 60, 150, 0.3);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 240px;
    box-shadow: 0 10px 20px rgba(2, 60, 150, 0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.new-lose-profit-outer .stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 60, 150, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.new-lose-profit-outer .stat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(2, 60, 150, 0.08); }
.new-lose-profit-outer .stat-card:hover::before { opacity: 1; }

.new-lose-profit-outer .stat-card .stat-value {
    font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.new-lose-profit-outer .stat-card .stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #8e8f94; font-weight: 700; margin-bottom: 0.5rem; }
.new-lose-profit-outer .stat-card p { font-size: 1rem; margin-bottom: 0; }

/* Split Sections */
.new-lose-profit-outer .section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.new-lose-profit-outer .section-split.reverse { direction: rtl; }
.new-lose-profit-outer .section-split.reverse > * { direction: ltr; }
.new-lose-profit-outer .content-box { padding-right: 2rem; }

.new-lose-profit-outer .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; line-height: 1.1; }

/* Visual Box */
.new-lose-profit-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-lose-profit-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: rotateBG 20s linear infinite; pointer-events: none; z-index: -1;
}

@keyframes rotateBG { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Benchmark Row */
.new-lose-profit-outer .benchmark-row { display: flex; align-items: center; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(2, 60, 150, 0.08); }
.new-lose-profit-outer .benchmark-row:last-child { border-bottom: none; }
.new-lose-profit-outer .benchmark-label { flex: 1; font-size: 1.05rem; color: #555555; font-weight: 500; }
.new-lose-profit-outer .benchmark-value { font-size: 1.3rem; font-weight: 800; color: var(--ems-primary); white-space: nowrap; }
.new-lose-profit-outer .benchmark-value.fast { background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.new-lose-profit-outer .benchmark-bar-wrap { width: 160px; background: rgba(2, 60, 150, 0.07); border-radius: 50px; height: 8px; overflow: hidden; }
.new-lose-profit-outer .benchmark-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--ems-primary), var(--ems-accent)); width: 0%; transition: width 1s ease; }

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

.new-lose-profit-outer .bullet-list { list-style: none; margin: 1.5rem 0; }
.new-lose-profit-outer .bullet-list li { position: relative; padding-left: 2rem; margin-bottom: 0.85rem; color: #555555; font-size: 1.1rem; }
.new-lose-profit-outer .bullet-list li::before { content: '•'; position: absolute; left: 0; color: var(--ems-primary); font-size: 1.4rem; line-height: 1.3; font-weight: 800; }

/* Erosion Cascade Timeline */
.new-lose-profit-outer .erosion-cascade { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.new-lose-profit-outer .erosion-step { display: flex; align-items: stretch; gap: 1.25rem; }
.new-lose-profit-outer .erosion-connector { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 40px; }
.new-lose-profit-outer .erosion-dot {
    width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    display: flex; align-items: center; justify-content: center; font-size: 1rem; color: white; font-weight: 800; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 60, 150, 0.2);
}
.new-lose-profit-outer .erosion-line { flex: 1; width: 2px; background: linear-gradient(180deg, rgba(2, 60, 150, 0.3), rgba(2, 60, 150, 0.08)); margin: 4px 0; min-height: 24px; }
.new-lose-profit-outer .erosion-step:last-child .erosion-line { display: none; }
.new-lose-profit-outer .erosion-body { flex: 1; padding-bottom: 2rem; }
.new-lose-profit-outer .erosion-step:last-child .erosion-body { padding-bottom: 0; }
.new-lose-profit-outer .erosion-body .erosion-tag { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ems-accent); margin-bottom: 0.3rem; }
.new-lose-profit-outer .erosion-body h4 { font-size: 1.1rem; color: var(--ems-primary); margin-bottom: 0.4rem; }
.new-lose-profit-outer .erosion-body p { font-size: 0.98rem; margin-bottom: 0; color: #555555; }

/* Highlight Quote */
.new-lose-profit-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;
}

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

.new-lose-profit-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-lose-profit-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 ease; }
.new-lose-profit-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-lose-profit-outer .feature-card:hover::before { opacity: 1; }

.new-lose-profit-outer .feature-card h3 { color: var(--ems-primary); font-size: 1.4rem; margin-bottom: 1rem; }
.new-lose-profit-outer .feature-card .card-tag { display: block; color: var(--ems-accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; margin-bottom: 0.75rem; }

.new-lose-profit-outer .card-icon {
    width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(2, 60, 150, 0.08), rgba(15, 82, 184, 0.04));
    border: 1px solid rgba(2, 60, 150, 0.15); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.25rem;
}

/* Callout */
.new-lose-profit-outer .warning-callout {
    background: rgba(2, 60, 150, 0.03); border: 1px solid rgba(2, 60, 150, 0.2); border-radius: 20px;
    padding: 2rem 2.5rem; margin: 2rem 0; display: flex; gap: 1.5rem; align-items: flex-start;
}
.new-lose-profit-outer .warning-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; padding-top: 0.1rem; }
.new-lose-profit-outer .warning-callout h4 { font-size: 1.15rem; color: var(--ems-primary); margin-bottom: 0.5rem; }
.new-lose-profit-outer .warning-callout p { font-size: 1rem; margin-bottom: 0; color: #555555; }

/* Dividers & Accent */
.new-lose-profit-outer .section-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(2, 60, 150, 0.15), transparent); }
.new-lose-profit-outer .accent-bar { height: 4px; width: 60px; border-radius: 2px; background: linear-gradient(90deg, var(--ems-primary), var(--ems-accent)); margin-bottom: 2rem; }

/* CTA */
.new-lose-profit-outer .cta-section {
    background: linear-gradient(135deg, var(--ems-primary) 0%, var(--ems-accent) 100%); border-radius: 28px;
    padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden;
}
.new-lose-profit-outer .cta-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 50%); animation: rotateBG 25s linear infinite; pointer-events: none;
}
.new-lose-profit-outer .cta-section h2 { color: white; -webkit-text-fill-color: white; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.new-lose-profit-outer .cta-section p { color: rgba(255, 255, 255, 0.88); font-size: 1.15rem; max-width: 760px; margin: 0 auto 1.5rem auto; }
.new-lose-profit-outer .cta-section p:last-child { margin-bottom: 0; }

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

/* Responsive */
@media (max-width: 992px) {
    .new-lose-profit-outer .section-split { grid-template-columns: 1fr; gap: 2rem; }
    .new-lose-profit-outer .section-split.reverse { direction: ltr; }
    .new-lose-profit-outer .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .new-lose-profit-outer .content-box { padding-right: 0; }
    .new-lose-profit-outer .stat-card { flex: 1 1 calc(50% - 1.5rem); }
    .new-lose-profit-outer .nav-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .new-lose-profit-outer .grid-3, .new-lose-profit-outer .grid-2 { grid-template-columns: 1fr; }
    .new-lose-profit-outer .stat-card { flex: 1 1 100%; padding: 1.5rem 1.25rem; }
    .new-lose-profit-outer .container { padding: 2.5rem 1.25rem; }
    .new-lose-profit-outer .hero { padding-top: 4rem; padding-bottom: 1.5rem; }
    .new-lose-profit-outer .hero h1 { font-size: clamp(1.9rem, 7vw, 3rem); }
    .new-lose-profit-outer .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .new-lose-profit-outer .benchmark-row { flex-wrap: wrap; gap: 0.75rem; padding: 1rem 0; }
    .new-lose-profit-outer .benchmark-label { flex: 1 1 100%; font-size: 0.95rem; }
    .new-lose-profit-outer .benchmark-bar-wrap { flex: 1 1 auto; width: auto; min-width: 80px; }
    .new-lose-profit-outer .visual-box, .new-lose-profit-outer .feature-card { padding: 1.75rem 1.25rem; }
    .new-lose-profit-outer .cta-section { padding: 2.75rem 1.5rem; }
    .new-lose-profit-outer .nav-links-grid { grid-template-columns: 1fr; margin: 3rem auto 1.5rem; }
    .new-lose-profit-outer .warning-callout { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}

@media (max-width: 480px) {
    .new-lose-profit-outer .container { padding: 2rem 1rem; }
    .new-lose-profit-outer .hero { padding-top: 3rem; }
    .new-lose-profit-outer .hero h1 { font-size: clamp(1.6rem, 8.5vw, 2.4rem); }
    .new-lose-profit-outer .stat-card .stat-value { font-size: 2rem; }
    .new-lose-profit-outer .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .new-lose-profit-outer .cta-section { padding: 2.25rem 1rem; border-radius: 20px; }
    .new-lose-profit-outer .erosion-dot { width: 34px; height: 34px; font-size: 0.88rem; }
}
