/* ==========================================================================
   WOW Methodology — Page Styles
   Template: template-methodology.php
   ========================================================================== */

.ntono-methodology {
    --meth-primary: var(--ntono-color-primary, #f4c32f);
    --meth-red: #660708;
    --meth-bg: #0B090A;
}

/* ── Hero ── */
.ntono-meth-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--meth-bg);
}

.ntono-meth-hero__glow-left {
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(102, 7, 8, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ntono-meth-hero__glow-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(244, 195, 47, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    transform: translate(25%, 25%);
    pointer-events: none;
}

.ntono-meth-hero__tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(244, 195, 47, 0.3);
    color: var(--meth-primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    background: rgba(244, 195, 47, 0.05);
    position: relative;
    z-index: 1;
}

.ntono-meth-hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ntono-meth-hero__title .ntono-cs-text-primary {
    color: var(--meth-primary);
    font-style: italic;
}

.ntono-meth-hero__desc {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.ntono-meth-hero__scroll {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.ntono-meth-hero__scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.25rem;
    animation: meth-mouse 2s infinite;
}

.ntono-meth-hero__scroll-dot {
    width: 4px;
    height: 8px;
    border-radius: 9999px;
    background: var(--meth-primary);
}

@keyframes meth-mouse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ── Steps ── */
.ntono-meth-steps {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: var(--meth-bg);
}

.ntono-meth-steps__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--meth-red), var(--meth-primary), var(--meth-red));
    box-shadow: 0 0 15px var(--meth-red);
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 0;
}

.ntono-meth-steps__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.ntono-meth-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 12rem;
}

.ntono-meth-step:last-child {
    margin-bottom: 4rem;
}

.ntono-meth-step--even {
    direction: rtl;
}

.ntono-meth-step--even>* {
    direction: ltr;
}

.ntono-meth-step__text {
    position: relative;
    z-index: 1;
}

.ntono-meth-step__phase {
    color: var(--meth-primary);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.ntono-meth-step__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.ntono-meth-step__desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ntono-meth-step__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ntono-meth-step__bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.ntono-meth-step__bullets li .material-icons {
    color: var(--meth-primary);
    font-size: 1rem;
}

.ntono-meth-step__stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.ntono-meth-step__stat-box {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.ntono-meth-step__stat-value {
    display: block;
    color: var(--meth-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.ntono-meth-step__stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.ntono-meth-step__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ntono-meth-step__visual-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ntono-meth-step__image {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* ── CTA ── */
.ntono-meth-cta {
    padding: 6rem 1.5rem;
    background: var(--meth-bg);
    position: relative;
    overflow: hidden;
}

.ntono-meth-cta__bg-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(244, 195, 47, 0.05), transparent);
    pointer-events: none;
}

.ntono-meth-cta__container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
}

.ntono-meth-cta__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.ntono-meth-cta__title .ntono-cs-text-primary {
    color: var(--meth-primary);
    font-style: italic;
}

.ntono-meth-cta__desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.ntono-meth-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--meth-primary);
    color: var(--meth-bg);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(244, 195, 47, 0.2);
}

.ntono-meth-cta__btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ── Responsive ── */
@media (max-width: 768px) {

    .ntono-meth-step,
    .ntono-meth-step--even {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .ntono-meth-step {
        margin-bottom: 6rem;
    }

    .ntono-meth-steps__line {
        display: none;
    }

    .ntono-meth-cta__container {
        padding: 3rem 1.5rem;
    }
}