/* ============================================
   NTPL PROCESS PAGE STYLES
   ============================================
   
   Color Palette:
   - Lime Green: #89F336
   - Warm Yellow: #FFF3C0
   - Teal: #4FE0CB
   - Vibrant Green: #00BF33
   
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   BASE STYLES & RESET
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
}

p {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'Inter', sans-serif;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: #89F336;
    color: #1a1a2e;
}

::-moz-selection {
    background: #89F336;
    color: #1a1a2e;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.ntpl-process {
    overflow-x: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.ntpl-text-gradient {
    background: linear-gradient(135deg, #89F336, #00BF33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ntpl-process-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fefffe 0%, #f0fff4 50%, #e8fff0 100%);
    overflow: hidden;
}

.ntpl-process-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-process-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ntpl-process-hero__shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    top: -250px;
    right: -150px;
    opacity: 0.25;
    animation: ntpl-floatShape 8s ease-in-out infinite;
}

.ntpl-process-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: #4FE0CB;
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    animation: ntpl-floatShape 10s ease-in-out infinite reverse;
}

.ntpl-process-hero__shape--3 {
    width: 250px;
    height: 250px;
    background: #FFF3C0;
    top: 40%;
    left: 30%;
    opacity: 0.5;
    animation: ntpl-floatShape 6s ease-in-out infinite;
}

.ntpl-process-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 191, 51, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

@keyframes ntpl-floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.ntpl-process-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-process-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ntpl-process-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00BF33;
    box-shadow: 0 4px 25px rgba(0, 191, 51, 0.15);
    margin-bottom: 30px;
    animation: ntpl-fadeInDown 0.8s ease-out;
}

.ntpl-process-hero__badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    animation: ntpl-pulse 2s infinite;
}

@keyframes ntpl-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes ntpl-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ntpl-process-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: ntpl-fadeInUp 0.8s ease-out 0.2s both;
}

.ntpl-process-hero__title-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #00BF33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntpl-process-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: ntpl-fadeInUp 0.8s ease-out 0.4s both;
}

.ntpl-process-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    animation: ntpl-fadeInUp 0.8s ease-out 0.6s both;
}

.ntpl-process-hero__stat {
    text-align: center;
}

.ntpl-process-hero__stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00BF33, #4FE0CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntpl-process-hero__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
}

.ntpl-process-hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

@keyframes ntpl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */
.ntpl-process-overview {
    padding: 120px 0;
    background: #fff;
}

.ntpl-process-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-process-overview__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-process-overview__tag {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-process-overview__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-process-overview__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ntpl-process-overview__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.ntpl-process-overview__card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
}

.ntpl-process-overview__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(137, 243, 54, 0.12);
    border-color: #89F336;
}

.ntpl-process-overview__card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.ntpl-process-overview__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ntpl-process-overview__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.ntpl-process-timeline {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fdf5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-process-timeline__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-process-timeline__bg-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #89F336, #4FE0CB, #00BF33, transparent);
    opacity: 0.3;
}

.ntpl-process-timeline__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-process-timeline__header {
    text-align: center;
    margin-bottom: 80px;
}

.ntpl-process-timeline__tag {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-process-timeline__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-process-timeline__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-process-timeline__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.ntpl-process-timeline__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
}

.ntpl-process-timeline__wrapper {
    position: relative;
}

.ntpl-process-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #89F336, #4FE0CB, #00BF33);
    transform: translateX(-50%);
    border-radius: 2px;
}

.ntpl-process-timeline__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.ntpl-process-timeline__item:last-child {
    margin-bottom: 0;
}

.ntpl-process-timeline__item--left {
    justify-content: flex-start;
    padding-right: calc(50% + 60px);
}

.ntpl-process-timeline__item--right {
    justify-content: flex-end;
    padding-left: calc(50% + 60px);
}

.ntpl-process-timeline__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border: 4px solid #89F336;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.ntpl-process-timeline__number span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00BF33;
}

.ntpl-process-timeline__item:hover .ntpl-process-timeline__number {
    background: linear-gradient(135deg, #89F336, #00BF33);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(137, 243, 54, 0.5);
}

.ntpl-process-timeline__item:hover .ntpl-process-timeline__number span {
    color: #fff;
}

.ntpl-process-timeline__number--featured,
.ntpl-process-timeline__number--final {
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-color: #00BF33;
}

.ntpl-process-timeline__number--featured span,
.ntpl-process-timeline__number--final span {
    color: #fff;
}

.ntpl-process-timeline__content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    width: 100%;
}

.ntpl-process-timeline__item:hover .ntpl-process-timeline__content {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(137, 243, 54, 0.1);
    border-color: #89F336;
}

.ntpl-process-timeline__content--featured {
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
    border: 2px solid #89F336;
}

.ntpl-process-timeline__content--final {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border: none;
}

.ntpl-process-timeline__content--final .ntpl-process-timeline__step-title,
.ntpl-process-timeline__content--final .ntpl-process-timeline__step-text {
    color: #fff;
}

.ntpl-process-timeline__content--final .ntpl-process-timeline__step-text {
    color: rgba(255, 255, 255, 0.8);
}

.ntpl-process-timeline__icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.ntpl-process-timeline__step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ntpl-process-timeline__step-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.ntpl-process-timeline__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ntpl-process-timeline__step-tag {
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    color: #00BF33;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
}

.ntpl-process-timeline__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.ntpl-process-timeline__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    border: 1px solid rgba(137, 243, 54, 0.2);
}

.ntpl-process-timeline__feature-icon {
    font-size: 1.2rem;
}

.ntpl-process-timeline__final-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.ntpl-process-timeline__final-stat {
    text-align: center;
}

.ntpl-process-timeline__final-stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #89F336;
}

.ntpl-process-timeline__final-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PROCESS FLOW SECTION
   ============================================ */
.ntpl-process-flow {
    padding: 120px 0;
    background: #fff;
}

.ntpl-process-flow__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-process-flow__header {
    text-align: center;
    margin-bottom: 60px;
}

.ntpl-process-flow__tag {
    display: inline-block;
    background: #FFF3C0;
    color: #b38600;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-process-flow__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

.ntpl-process-flow__wrapper {
    overflow-x: auto;
    padding: 20px 0;
}

.ntpl-process-flow__phases {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-width: max-content;
}

.ntpl-process-flow__phase {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid #f0f0f0;
    min-width: 180px;
    transition: all 0.3s ease;
}

.ntpl-process-flow__phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ntpl-process-flow__phase--highlight {
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
    border: 2px solid #89F336;
}

.ntpl-process-flow__phase--final {
    background: linear-gradient(135deg, #89F336 0%, #00BF33 100%);
    border: none;
}

.ntpl-process-flow__phase--final .ntpl-process-flow__phase-number,
.ntpl-process-flow__phase--final .ntpl-process-flow__phase-title {
    color: #fff;
}

.ntpl-process-flow__phase--final .ntpl-process-flow__mini-step {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ntpl-process-flow__phase--final .ntpl-process-flow__mini-step-num {
    background: #fff;
    color: #00BF33;
}

.ntpl-process-flow__phase-header {
    margin-bottom: 20px;
}

.ntpl-process-flow__phase-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ntpl-process-flow__phase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
}

.ntpl-process-flow__phase-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ntpl-process-flow__mini-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f9f9f9;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

.ntpl-process-flow__mini-step-num {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ntpl-process-flow__arrow {
    font-size: 2rem;
    color: #89F336;
    font-weight: 300;
}

/* ============================================
   QUALITY SECTION
   ============================================ */
.ntpl-process-quality {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-process-quality__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-process-quality__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.ntpl-process-quality__shape--1 {
    width: 500px;
    height: 500px;
    background: #89F336;
    top: -200px;
    right: -100px;
    opacity: 0.1;
}

.ntpl-process-quality__shape--2 {
    width: 400px;
    height: 400px;
    background: #4FE0CB;
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.ntpl-process-quality__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-process-quality__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-process-quality__tag {
    display: inline-block;
    background: rgba(137, 243, 54, 0.2);
    color: #89F336;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-process-quality__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ntpl-process-quality__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-process-quality__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
}

.ntpl-process-quality__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.ntpl-process-quality__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ntpl-process-quality__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.ntpl-process-quality__card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(137, 243, 54, 0.3);
    transform: translateY(-8px);
}

.ntpl-process-quality__card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.ntpl-process-quality__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.ntpl-process-quality__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.ntpl-process-tech {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f0fff4 100%);
}

.ntpl-process-tech__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-process-tech__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.ntpl-process-tech__tag {
    display: inline-block;
    background: linear-gradient(135deg, #4FE0CB, #89F336);
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-process-tech__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ntpl-process-tech__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.ntpl-process-tech__features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ntpl-process-tech__feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.ntpl-process-tech__feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(137, 243, 54, 0.1);
}

.ntpl-process-tech__feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    border-radius: 14px;
    flex-shrink: 0;
}

.ntpl-process-tech__feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.ntpl-process-tech__feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tech Visual - Orbit Animation */
.ntpl-process-tech__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ntpl-process-tech__circle-wrap {
    position: relative;
    width: 350px;
    height: 350px;
}

.ntpl-process-tech__circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntpl-process-tech__circle--outer {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(137, 243, 54, 0.3);
    animation: ntpl-rotateOrbit 20s linear infinite;
}

.ntpl-process-tech__circle--middle {
    width: 70%;
    height: 70%;
    border: 2px solid rgba(79, 224, 203, 0.4);
    animation: ntpl-rotateOrbit 15s linear infinite reverse;
}

.ntpl-process-tech__circle--inner {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #89F336, #00BF33);
    box-shadow: 0 20px 50px rgba(137, 243, 54, 0.4);
}

.ntpl-process-tech__circle-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

@keyframes ntpl-rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ntpl-process-tech__orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: ntpl-float 4s ease-in-out infinite;
}

.ntpl-process-tech__orbit-item--1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ntpl-process-tech__orbit-item--2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.ntpl-process-tech__orbit-item--3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.ntpl-process-tech__orbit-item--4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes ntpl-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.ntpl-process-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #89F336 0%, #00BF33 50%, #4FE0CB 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-process-cta__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 3px 3px, rgba(255, 255, 255, 0.1) 2px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.ntpl-process-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-process-cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ntpl-process-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ntpl-process-cta__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0;
}

.ntpl-process-cta__buttons {
    display: flex;
    gap: 20px;
}

.ntpl-process-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.ntpl-process-cta__btn--primary {
    background: #fff;
    color: #00BF33;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ntpl-process-cta__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ntpl-process-cta__btn--primary svg {
    transition: transform 0.3s;
}

.ntpl-process-cta__btn--primary:hover svg {
    transform: translateX(5px);
}

.ntpl-process-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ntpl-process-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .ntpl-process-overview__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ntpl-process-tech__content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .ntpl-process-hero__title {
        font-size: 3rem;
    }

    .ntpl-process-overview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntpl-process-timeline__item--left,
    .ntpl-process-timeline__item--right {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .ntpl-process-timeline__line {
        left: 30px;
    }

    .ntpl-process-timeline__number {
        left: 0;
        transform: none;
    }

    .ntpl-process-quality__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntpl-process-tech__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ntpl-process-tech__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ntpl-process-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .ntpl-process-hero__title {
        font-size: 2.3rem;
    }

    .ntpl-process-hero__desc {
        font-size: 1.05rem;
    }

    .ntpl-process-hero__stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .ntpl-process-hero__stat-divider {
        width: 60px;
        height: 1px;
    }

    .ntpl-process-overview,
    .ntpl-process-timeline,
    .ntpl-process-flow,
    .ntpl-process-quality,
    .ntpl-process-tech {
        padding: 80px 0;
    }

    .ntpl-process-overview__title,
    .ntpl-process-timeline__title,
    .ntpl-process-flow__title,
    .ntpl-process-quality__title,
    .ntpl-process-tech__title {
        font-size: 2rem;
    }

    .ntpl-process-overview__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ntpl-process-timeline__item--left,
    .ntpl-process-timeline__item--right {
        padding-left: 70px;
    }

    .ntpl-process-timeline__number {
        width: 50px;
        height: 50px;
    }

    .ntpl-process-timeline__number span {
        font-size: 1rem;
    }

    .ntpl-process-timeline__content {
        padding: 25px;
    }

    .ntpl-process-timeline__features {
        grid-template-columns: 1fr;
    }

    .ntpl-process-flow__phases {
        flex-direction: column;
        align-items: stretch;
    }

    .ntpl-process-flow__phase {
        min-width: auto;
    }

    .ntpl-process-flow__arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .ntpl-process-quality__grid {
        grid-template-columns: 1fr;
    }

    .ntpl-process-tech__circle-wrap {
        width: 280px;
        height: 280px;
    }

    .ntpl-process-tech__orbit-item {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .ntpl-process-cta__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .ntpl-process-cta__title {
        font-size: 2rem;
    }

    .ntpl-process-cta__desc {
        max-width: 100%;
    }

    .ntpl-process-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .ntpl-process-cta__btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ntpl-process-hero__title {
        font-size: 1.9rem;
    }

    .ntpl-process-hero__badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .ntpl-process-hero__desc {
        font-size: 1rem;
    }

    .ntpl-process-timeline__item--left,
    .ntpl-process-timeline__item--right {
        padding-left: 55px;
    }

    .ntpl-process-timeline__line {
        left: 20px;
    }

    .ntpl-process-timeline__number {
        width: 40px;
        height: 40px;
    }

    .ntpl-process-timeline__number span {
        font-size: 0.85rem;
    }

    .ntpl-process-timeline__content {
        padding: 20px;
    }

    .ntpl-process-timeline__step-title {
        font-size: 1.2rem;
    }

    .ntpl-process-timeline__step-text {
        font-size: 0.9rem;
    }

    .ntpl-process-timeline__tags {
        flex-direction: column;
    }

    .ntpl-process-timeline__final-stats {
        flex-direction: column;
        gap: 15px;
    }

    .ntpl-process-flow__phase {
        padding: 25px 20px;
    }

    .ntpl-process-quality__card {
        padding: 30px 25px;
    }

    .ntpl-process-tech__circle-wrap {
        width: 240px;
        height: 240px;
    }

    .ntpl-process-tech__circle-text {
        font-size: 1rem;
    }

    .ntpl-process-tech__orbit-item {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .ntpl-process-tech__feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .ntpl-process-tech__feature-icon {
        margin: 0 auto;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes ntpl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ntpl-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ntpl-process-hero__content {
    animation: ntpl-fadeInUp 0.8s ease-out;
}

.ntpl-process-overview__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-process-overview__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-process-overview__card:nth-child(2) {
    animation-delay: 0.15s;
}

.ntpl-process-overview__card:nth-child(3) {
    animation-delay: 0.2s;
}

.ntpl-process-overview__card:nth-child(4) {
    animation-delay: 0.25s;
}

.ntpl-process-overview__card:nth-child(5) {
    animation-delay: 0.3s;
}

.ntpl-process-timeline__item {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-process-timeline__item:nth-child(2) {
    animation-delay: 0.1s;
}

.ntpl-process-timeline__item:nth-child(3) {
    animation-delay: 0.15s;
}

.ntpl-process-timeline__item:nth-child(4) {
    animation-delay: 0.2s;
}

.ntpl-process-timeline__item:nth-child(5) {
    animation-delay: 0.25s;
}

.ntpl-process-timeline__item:nth-child(6) {
    animation-delay: 0.3s;
}

.ntpl-process-timeline__item:nth-child(7) {
    animation-delay: 0.35s;
}

.ntpl-process-timeline__item:nth-child(8) {
    animation-delay: 0.4s;
}

.ntpl-process-timeline__item:nth-child(9) {
    animation-delay: 0.45s;
}

.ntpl-process-timeline__item:nth-child(10) {
    animation-delay: 0.5s;
}

.ntpl-process-timeline__item:nth-child(11) {
    animation-delay: 0.55s;
}

.ntpl-process-timeline__item:nth-child(12) {
    animation-delay: 0.6s;
}

.ntpl-process-quality__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-process-quality__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-process-quality__card:nth-child(2) {
    animation-delay: 0.15s;
}

.ntpl-process-quality__card:nth-child(3) {
    animation-delay: 0.2s;
}

.ntpl-process-quality__card:nth-child(4) {
    animation-delay: 0.25s;
}

.ntpl-process-quality__card:nth-child(5) {
    animation-delay: 0.3s;
}

.ntpl-process-quality__card:nth-child(6) {
    animation-delay: 0.35s;
}

.ntpl-process-tech__feature {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-process-tech__feature:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-process-tech__feature:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-process-tech__feature:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-process-tech__feature:nth-child(4) {
    animation-delay: 0.4s;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ntpl-process-tech__circle--outer,
    .ntpl-process-tech__circle--middle {
        animation: none;
    }
}

/* ============================================
   ADDITIONAL HOVER & INTERACTIVE EFFECTS
   ============================================ */

/* Timeline number pulse on hover */
.ntpl-process-timeline__number--final {
    animation: ntpl-pulseGlow 2s ease-in-out infinite;
}

@keyframes ntpl-pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(137, 243, 54, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(137, 243, 54, 0);
    }
}

/* Card shine effect */
.ntpl-process-overview__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.ntpl-process-overview__card {
    position: relative;
    overflow: hidden;
}

.ntpl-process-overview__card:hover::after {
    left: 100%;
}

/* Timeline content arrow indicator */
.ntpl-process-timeline__content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.ntpl-process-timeline__item--left .ntpl-process-timeline__content::before {
    right: -15px;
    top: 25px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
}

.ntpl-process-timeline__item--right .ntpl-process-timeline__content::before {
    left: -15px;
    top: 25px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
}

@media (max-width: 1024px) {

    .ntpl-process-timeline__item--left .ntpl-process-timeline__content::before,
    .ntpl-process-timeline__item--right .ntpl-process-timeline__content::before {
        left: -15px;
        right: auto;
        border-width: 10px 15px 10px 0;
        border-color: transparent #fff transparent transparent;
    }
}

/* Phase card hover effect */
.ntpl-process-flow__phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.ntpl-process-flow__phase {
    position: relative;
    overflow: hidden;
}

.ntpl-process-flow__phase:hover::before {
    transform: scaleX(1);
}

.ntpl-process-flow__phase--highlight::before,
.ntpl-process-flow__phase--final::before {
    display: none;
}

/* Quality card icon animation */
.ntpl-process-quality__card-icon {
    transition: all 0.3s ease;
}

.ntpl-process-quality__card:hover .ntpl-process-quality__card-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Tech feature icon bounce */
.ntpl-process-tech__feature:hover .ntpl-process-tech__feature-icon {
    animation: ntpl-iconBounce 0.5s ease;
}

@keyframes ntpl-iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Mini step hover effect */
.ntpl-process-flow__mini-step {
    transition: all 0.3s ease;
}

.ntpl-process-flow__mini-step:hover {
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    transform: translateX(5px);
}

.ntpl-process-flow__phase--final .ntpl-process-flow__mini-step:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Timeline step tag hover */
.ntpl-process-timeline__step-tag {
    transition: all 0.3s ease;
    cursor: default;
}

.ntpl-process-timeline__step-tag:hover {
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    transform: scale(1.05);
}

/* Orbit item hover */
.ntpl-process-tech__orbit-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.ntpl-process-tech__orbit-item:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(137, 243, 54, 0.3);
}

/* Number counter animation - for stats */
.ntpl-process-hero__stat-number,
.ntpl-process-timeline__final-stat-number {
    transition: all 0.3s ease;
}

.ntpl-process-hero__stat:hover .ntpl-process-hero__stat-number {
    transform: scale(1.1);
}

/* Floating animation for overview cards */
.ntpl-process-overview__card-icon {
    animation: ntpl-floatIcon 3s ease-in-out infinite;
}

@keyframes ntpl-floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Stagger the icon animations */
.ntpl-process-overview__card:nth-child(1) .ntpl-process-overview__card-icon {
    animation-delay: 0s;
}

.ntpl-process-overview__card:nth-child(2) .ntpl-process-overview__card-icon {
    animation-delay: 0.2s;
}

.ntpl-process-overview__card:nth-child(3) .ntpl-process-overview__card-icon {
    animation-delay: 0.4s;
}

.ntpl-process-overview__card:nth-child(4) .ntpl-process-overview__card-icon {
    animation-delay: 0.6s;
}

.ntpl-process-overview__card:nth-child(5) .ntpl-process-overview__card-icon {
    animation-delay: 0.8s;
}

/* Progress line animation */
.ntpl-process-timeline__line {
    background: linear-gradient(to bottom,
            transparent 0%,
            #89F336 5%,
            #4FE0CB 50%,
            #00BF33 95%,
            transparent 100%);
    background-size: 100% 200%;
    animation: ntpl-lineFlow 3s linear infinite;
}

@keyframes ntpl-lineFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

/* CTA button ripple effect */
.ntpl-process-cta__btn--primary {
    position: relative;
    overflow: hidden;
}

.ntpl-process-cta__btn--primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(137, 243, 54, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ntpl-process-cta__btn--primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Featured content glow effect */
.ntpl-process-timeline__content--featured {
    position: relative;
}

.ntpl-process-timeline__content--featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #89F336, #4FE0CB, #00BF33);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ntpl-process-timeline__item--featured:hover .ntpl-process-timeline__content--featured::after {
    opacity: 0.5;
    animation: ntpl-glowPulse 2s ease-in-out infinite;
}

@keyframes ntpl-glowPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}