/* ============================================
   NTPL ABOUT PAGE STYLES
   ============================================
   
   Color Palette:
   - Lime Green: #89F336
   - Warm Yellow: #FFF3C0
   - Teal: #4FE0CB
   - Vibrant Green: #00BF33
   
   ============================================ */

/* ============================================
   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;
}

/* Typography Base */
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;
}

strong {
    font-weight: 600;
}

/* Selection */
::selection {
    background: #89F336;
    color: #1a1a2e;
}

::-moz-selection {
    background: #89F336;
    color: #1a1a2e;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.ntpl-about {
    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;
}

.ntpl-highlight-box {
    background: linear-gradient(180deg, transparent 50%, #FFF3C0 50%);
    padding: 0 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ntpl-about-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f0fff4 0%, #ffffff 100%);
    overflow: hidden;
}

.ntpl-about-hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-about-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ntpl-about-hero__shape--1 {
    width: 600px;
    height: 600px;
    background: #89F336;
    top: -300px;
    right: -200px;
    opacity: 0.15;
}

.ntpl-about-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: #4FE0CB;
    bottom: -100px;
    left: -150px;
    opacity: 0.2;
}

.ntpl-about-hero__shape--3 {
    width: 200px;
    height: 200px;
    background: #FFF3C0;
    top: 40%;
    left: 30%;
    opacity: 0.5;
}

.ntpl-about-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.ntpl-about-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
}

.ntpl-about-hero__breadcrumb a {
    color: #666;
    transition: color 0.3s ease;
}

.ntpl-about-hero__breadcrumb a:hover {
    color: #00BF33;
}

.ntpl-about-hero__breadcrumb-sep {
    color: #ccc;
    display: flex;
}

.ntpl-about-hero__breadcrumb span:last-child {
    color: #00BF33;
    font-weight: 500;
}

/* Hero Content */
.ntpl-about-hero__content {
    max-width: 800px;
    margin-bottom: 60px;
}

.ntpl-about-hero__tag {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.ntpl-about-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 24px;
}

.ntpl-about-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
}

/* Hero Stats */
.ntpl-about-hero__stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 35px 45px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    max-width: fit-content;
}

.ntpl-about-hero__stat {
    text-align: center;
}

.ntpl-about-hero__stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00BF33;
    margin-bottom: 6px;
}

.ntpl-about-hero__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ntpl-about-hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #e0e0e0, transparent);
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */
.ntpl-about-overview {
    padding: 120px 0;
    background: #fff;
}

.ntpl-about-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-about-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Images Section */
.ntpl-about-overview__images {
    position: relative;
    height: 550px;
}

.ntpl-about-overview__img-main {
    position: relative;
    width: 85%;
    z-index: 2;
}

.ntpl-about-overview__img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.ntpl-about-overview__img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    padding: 20px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(137, 243, 54, 0.4);
}

.ntpl-about-overview__badge-icon {
    font-size: 2.5rem;
}

.ntpl-about-overview__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.ntpl-about-overview__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 1;
}

.ntpl-about-overview__img-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.ntpl-about-overview__img-accent {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFF3C0, #4FE0CB);
    border-radius: 24px;
    opacity: 0.6;
    z-index: 0;
    transform: rotate(15deg);
}

/* Content Section */
.ntpl-about-overview__tag {
    display: inline-block;
    background: #FFF3C0;
    color: #b38600;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ntpl-about-overview__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 28px;
}

.ntpl-about-overview__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.ntpl-about-overview__text strong {
    color: #00BF33;
    font-weight: 600;
}

/* Features */
.ntpl-about-overview__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.ntpl-about-overview__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.06), rgba(79, 224, 203, 0.06));
    border-radius: 16px;
    border: 1px solid rgba(137, 243, 54, 0.15);
    transition: all 0.3s ease;
}

.ntpl-about-overview__feature:hover {
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.12), rgba(79, 224, 203, 0.1));
    transform: translateX(10px);
}

.ntpl-about-overview__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 12px;
    color: #fff;
}

.ntpl-about-overview__feature-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.ntpl-about-overview__feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.ntpl-about-mv {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fdf5 0%, #fff 100%);
}

.ntpl-about-mv__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-about-mv__header {
    text-align: center;
    margin-bottom: 60px;
}

.ntpl-about-mv__tag {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ntpl-about-mv__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* MV Cards Grid */
.ntpl-about-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.ntpl-about-mv__card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.ntpl-about-mv__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.ntpl-about-mv__card--mission {
    border-top: 5px solid #89F336;
}

.ntpl-about-mv__card--vision {
    border-top: 5px solid #4FE0CB;
}

.ntpl-about-mv__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.ntpl-about-mv__card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF3C0, #f5f5f5);
    border-radius: 18px;
    color: #00BF33;
}

.ntpl-about-mv__card--vision .ntpl-about-mv__card-icon {
    color: #4FE0CB;
}

.ntpl-about-mv__card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
}

.ntpl-about-mv__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.ntpl-about-mv__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mission Highlight Box */
.ntpl-about-mv__card-highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.08), rgba(255, 243, 192, 0.3));
    border-radius: 14px;
    border-left: 4px solid #89F336;
}

.ntpl-about-mv__card-highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ntpl-about-mv__card-highlight p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.ntpl-about-mv__card-highlight strong {
    color: #00BF33;
    font-weight: 600;
}

/* Vision List */
.ntpl-about-mv__card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ntpl-about-mv__card-list li {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: #fafcfa;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.ntpl-about-mv__card-list li:hover {
    background: linear-gradient(135deg, rgba(79, 224, 203, 0.1), rgba(137, 243, 54, 0.08));
    transform: translateX(8px);
}

.ntpl-about-mv__list-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ntpl-about-mv__card-list span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
}

.ntpl-about-mv__card-list strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Card Decoration */
.ntpl-about-mv__card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.1;
}

.ntpl-about-mv__card--mission .ntpl-about-mv__card-decoration {
    background: #89F336;
}

.ntpl-about-mv__card--vision .ntpl-about-mv__card-decoration {
    background: #4FE0CB;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.ntpl-about-values {
    padding: 120px 0;
    background: #fff;
}

.ntpl-about-values__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-about-values__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-about-values__tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.15), rgba(79, 224, 203, 0.15));
    color: #00BF33;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ntpl-about-values__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.ntpl-about-values__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
}

/* Values Grid */
.ntpl-about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ntpl-about-values__card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ntpl-about-values__card::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;
}

.ntpl-about-values__card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(137, 243, 54, 0.15);
    border-color: transparent;
}

.ntpl-about-values__card:hover::before {
    transform: scaleX(1);
}

.ntpl-about-values__card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
    transition: color 0.3s ease;
}

.ntpl-about-values__card:hover .ntpl-about-values__card-num {
    color: rgba(137, 243, 54, 0.2);
}

.ntpl-about-values__card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.ntpl-about-values__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ntpl-about-values__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   JOURNEY TIMELINE SECTION
   ============================================ */
.ntpl-about-journey {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
}

.ntpl-about-journey__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-about-journey__header {
    text-align: center;
    margin-bottom: 80px;
}

.ntpl-about-journey__tag {
    display: inline-block;
    background: rgba(137, 243, 54, 0.2);
    color: #89F336;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ntpl-about-journey__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
}

/* Timeline */
.ntpl-about-journey__timeline {
    position: relative;
    padding-left: 60px;
}

.ntpl-about-journey__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 3px;
    background: linear-gradient(180deg, #89F336, #4FE0CB, #00BF33);
    border-radius: 2px;
}

.ntpl-about-journey__item {
    position: relative;
    padding-bottom: 50px;
}

.ntpl-about-journey__item:last-child {
    padding-bottom: 0;
}

.ntpl-about-journey__dot {
    position: absolute;
    left: -52px;
    top: 5px;
    width: 26px;
    height: 26px;
    background: #2d2d44;
    border: 4px solid #89F336;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.ntpl-about-journey__item:hover .ntpl-about-journey__dot {
    background: #89F336;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(137, 243, 54, 0.5);
}

.ntpl-about-journey__item--current .ntpl-about-journey__dot {
    background: #89F336;
    box-shadow: 0 0 25px rgba(137, 243, 54, 0.6);
}

.ntpl-about-journey__content {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ntpl-about-journey__item:hover .ntpl-about-journey__content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(137, 243, 54, 0.3);
    transform: translateX(10px);
}

.ntpl-about-journey__year {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ntpl-about-journey__item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.ntpl-about-journey__item-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ntpl-about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #89F336 0%, #4FE0CB 50%, #00BF33 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-about-cta__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.ntpl-about-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.ntpl-about-cta__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.ntpl-about-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ntpl-about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ntpl-about-cta__btn--primary {
    background: #fff;
    color: #00BF33;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ntpl-about-cta__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ntpl-about-cta__btn--primary svg {
    transition: transform 0.3s ease;
}

.ntpl-about-cta__btn--primary:hover svg {
    transform: translateX(5px);
}

.ntpl-about-cta__btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.ntpl-about-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* CTA Decoration */
.ntpl-about-cta__decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-about-cta__circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.ntpl-about-cta__circle--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.ntpl-about-cta__circle--2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .ntpl-about-hero__title {
        font-size: 2.8rem;
    }

    .ntpl-about-overview__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ntpl-about-overview__images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .ntpl-about-mv__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ntpl-about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ntpl-about-hero {
        padding: 140px 0 80px;
    }

    .ntpl-about-hero__title {
        font-size: 2.2rem;
    }

    .ntpl-about-hero__desc {
        font-size: 1.1rem;
    }

    .ntpl-about-hero__stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
        width: 100%;
    }

    .ntpl-about-hero__stat-divider {
        width: 60px;
        height: 1px;
    }

    .ntpl-about-overview,
    .ntpl-about-mv,
    .ntpl-about-values,
    .ntpl-about-journey {
        padding: 80px 0;
    }

    .ntpl-about-overview__title,
    .ntpl-about-mv__title,
    .ntpl-about-values__title,
    .ntpl-about-journey__title {
        font-size: 2rem;
    }

    .ntpl-about-overview__images {
        height: 380px;
    }

    .ntpl-about-overview__img-main img {
        height: 300px;
    }

    .ntpl-about-overview__img-secondary {
        width: 50%;
    }

    .ntpl-about-overview__img-secondary img {
        height: 180px;
    }

    .ntpl-about-mv__card {
        padding: 35px 28px;
    }

    .ntpl-about-values__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ntpl-about-values__card {
        padding: 35px 25px;
    }

    .ntpl-about-journey__timeline {
        padding-left: 50px;
    }

    .ntpl-about-journey__dot {
        left: -42px;
        width: 22px;
        height: 22px;
    }

    .ntpl-about-cta__title {
        font-size: 2rem;
    }

    .ntpl-about-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .ntpl-about-cta__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ntpl-about-hero__title {
        font-size: 1.8rem;
    }

    .ntpl-about-hero__tag {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .ntpl-about-overview__images {
        height: 320px;
    }

    .ntpl-about-overview__img-main img {
        height: 250px;
    }

    .ntpl-about-overview__img-badge {
        bottom: -20px;
        right: -10px;
        padding: 15px 18px;
    }

    .ntpl-about-overview__badge-icon {
        font-size: 2rem;
    }

    .ntpl-about-overview__badge-text {
        font-size: 0.8rem;
    }

    .ntpl-about-overview__img-secondary {
        display: none;
    }

    .ntpl-about-overview__img-accent {
        display: none;
    }

    .ntpl-about-overview__feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .ntpl-about-mv__card-header {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .ntpl-about-mv__card-number {
        position: static;
        font-size: 2rem;
    }

    .ntpl-about-journey__content {
        padding: 20px;
    }

    .ntpl-about-journey__item-title {
        font-size: 1.1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ntpl-about-hero__content {
    animation: fadeInUp 0.8s ease-out;
}

.ntpl-about-hero__stats {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.ntpl-about-overview__content {
    animation: fadeInUp 0.8s ease-out;
}

.ntpl-about-mv__card {
    animation: fadeInUp 0.8s ease-out;
}

.ntpl-about-values__card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.ntpl-about-values__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-about-values__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-about-values__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-about-values__card: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;
    }
}