/* Inter Font Configuration Integration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --nami-pink: #ff007a;
    --nami-orange: #ff6a00;
    --nami-dark: #0f172a;
    --nami-soft-bg: #fdfafc;
}

/* Hero Base Settings - Adjusted Spacing to Push Content Down slightly */
.nami-interview-hero {
    padding: 120px 0 100px 0; /* Pushed down from top */
    background-color: var(--nami-soft-bg);
    overflow: hidden;
    font-family: 'Inter', sans-serif; 
}

/* Premium Elite Instructor Badge Style */
.elite-instructor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffe6f2; 
    color: #ff007a;            
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.badge-verified-icon {
    font-size: 14px;
    color: #ff007a;
}

.pre-title-badge {
    color: #ff007a;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Fixed H1 Layout & Color Mapping */
.hero-main-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--nami-dark);
    margin-bottom: 25px;
}

/* Linear Gradient for Text Rendering Fix */
.gradient-text {
    background: linear-gradient(to right, #ff007a 0%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #475569;
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

/* Action Trigger Elements */
.button-action-group { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-nami-primary {
    background: linear-gradient(135deg, #ff007a, #ff6a00);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nami-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 122, 0.35);
    color: #fff;
}

.btn-nami-secondary {
    background: #fff;
    color: var(--nami-dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-nami-secondary:hover { 
    background: #f8fafc; 
    border-color: #ff007a; 
}

/* Right Floating Illustration Element Structure */
.hero-visual-frame { position: relative; display: flex; justify-content: center; }

.main-visual-circle {
    width: 450px; height: 450px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border: 20px solid rgba(255, 255, 255, 0.6);
}

.hero-floating-img {
    width: 100%; height: auto;
    border-radius: 20px;
}

.floating-ui-card {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 15px;
    display: flex; align-items: center; gap: 12px;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.floating-ui-card.top-right { top: 20px; right: 0; }
.floating-ui-card.bottom-left { bottom: 40px; left: 0; animation-delay: 2s; }

.card-icon {
    width: 35px; height: 35px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.card-icon.pink { background: #ff007a; }
.card-icon.orange { background: #ff6a00; }

/* Visual Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Layout Responsiveness */
@media (max-width: 991px) {
    .nami-interview-hero { padding: 80px 0 60px 0; text-align: center; }
    .hero-main-title { font-size: 2.8rem; }
    .main-visual-circle { width: 320px; height: 320px; margin-bottom: 40px; }
    .hero-subtext { margin: 20px auto 30px auto; }
    .button-action-group { justify-content: center; }
}


.nami-stats-section {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nami-stat-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nami-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.1);
    border-color: #ff007a;
}

/* Exact Icon Box Styling from image_cf96db.png */
.stat-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 20px;       /* soft squircle rounded shape from the image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;           /* perfectly sized and centered icon */
    margin-bottom: 22px;
    transition: 0.3s;
}

/* Light background and premium color mapping from the image_cf96db.png sample */
.pink-glow { background: #fff0f6; color: #ff007a; }
.orange-glow { background: #fff6f0; color: #ff6a00; }
.dark-glow { background: #f4f6f9; color: #0f172a; }

/* Premium Metrics Typography */
.number-wrapper {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 8px;
}

.suffix {
    color: #ff007a;
    margin-left: 2px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fluid Design Breakdown */
@media (max-width: 768px) {
    .number-wrapper { font-size: 1.8rem; }
    .nami-stat-card { padding: 25px 12px; }
    .stat-icon-box { width: 55px; height: 55px; font-size: 22px; border-radius: 16px; }
}



.nami-role-prep-elite {
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}



/* Header Elements & Gradient */
.elite-tag {
    color: var(--nami-pink);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.elite-h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--nami-pink) 0%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Animated Underline Styling */
.premium-underline {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, var(--nami-pink), #ff6a00);
    margin: 15px auto 0 auto;
    border-radius: 10px;
    position: relative;
}

.premium-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    left: 0;
    animation: lineMove 2s infinite linear;
}

@keyframes lineMove {
    0% { left: 0%; }
    50% { left: 100%; transform: translateX(-100%); }
    100% { left: 0%; }
}

.elite-p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Elite Card Grid Structure */
.elite-role-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(241, 245, 249, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.elite-role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px -15px rgba(214, 51, 132, 0.12);
    border-color: var(--nami-pink);
}

.image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.elite-role-card:hover .image-container img {
    transform: scale(1.12);
}

.role-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.role-tag {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

/* Card Content Details */
.role-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.role-content h4 {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.role-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

/* Call to Action Design */
.role-cta {
    color: var(--nami-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    margin-top: auto;
}

.role-cta i {
    font-size: 12px;
    background: var(--nami-pink-light);
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.role-cta:hover { color: var(--dark-blue); }
.role-cta:hover i { background: var(--nami-pink); color: #fff; transform: translateX(3px); }

/* High-Quality Phone/Mobile Devices Optimization */
@media (max-width: 767px) {
    .elite-h2 { font-size: 1.9rem; }
    .image-container { height: 115px; } /* Perfect aspect ratio for two cards row setup */
    
    .role-content { padding: 12px; }
    .role-content h4 { font-size: 0.95rem; margin-bottom: 5px; }
    .role-content p { font-size: 0.78rem; line-height: 1.4; min-height: 56px; margin-bottom: 12px; }
    
    .role-cta { font-size: 0.78rem; gap: 4px; }
    .role-cta i { width: 22px; height: 22px; font-size: 9px; }
    .role-tag { top: 10px; left: 10px; padding: 2px 8px; font-size: 9px; }
}



.nami-roadmap-section {
    background: #f8fafc;
    padding: 80px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}



.roadmap-badge {
    color: var(--nami-pink);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.roadmap-h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--nami-pink) 0%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-underline {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, var(--nami-pink), #ff6a00);
    margin: 15px auto 0 auto;
    border-radius: 10px;
    position: relative;
}

.premium-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    left: 0;
    animation: roadLineMove 2s infinite linear;
}

@keyframes roadLineMove {
    0% { left: 0%; }
    50% { left: 100%; transform: translateX(-100%); }
    100% { left: 0%; }
}

.roadmap-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* SMART RESPONSIVE GRID (Desktop 3 columns, Mobile 2 columns) */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

.roadmap-item {
    position: relative;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

.roadmap-node {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.node-number {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #94a3b8;
    z-index: 2;
    transition: all 0.3s ease;
}

.node-line {
    flex-grow: 1;
    height: 2px;
    background: #e2e8f0;
    margin-left: 10px;
    transition: all 0.3s ease;
}

/* Hide lines at the end of rows on desktop (Every 3rd item) */
.roadmap-grid .roadmap-item:nth-child(3n) .node-line {
    display: none;
}

/* Card Styling */
.roadmap-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    width: 100%;
    flex-grow: 1;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.roadmap-icon {
    font-size: 28px;
    color: var(--nami-pink);
    margin-bottom: 15px;
    display: inline-block;
}

.roadmap-content h4 {
    font-weight: 800;
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.roadmap-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* HOVER EFFECT INTERACTION */
.group-hover-trigger:hover .node-number {
    background: var(--nami-pink);
    border-color: var(--nami-pink);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.35);
}

.group-hover-trigger:hover .node-line {
    background: var(--nami-pink);
}

.group-hover-trigger:hover .roadmap-content {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -15px rgba(15, 23, 42, 0.08);
    border-color: var(--nami-pink);
}

/* MOBILE DESIGN TUNING (Force 2 Columns & Adjust Spacing) */
@media (max-width: 991px) {
    .roadmap-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; 
    }
    .roadmap-grid .roadmap-item:nth-child(3n) .node-line { display: block; }
    .roadmap-grid .roadmap-item:nth-child(2n) .node-line { display: none; }
}

@media (max-width: 576px) {
    .nami-roadmap-section { padding: 50px 0; }
    .roadmap-h2 { font-size: 1.8rem; }
    
    .roadmap-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
        margin-top: 35px;
    }
    
    .roadmap-item { padding-top: 35px; }
    .node-number { width: 32px; height: 32px; font-size: 11px; }
    .node-line { display: none !important; }
    
    .roadmap-content { padding: 15px 12px; border-radius: 16px; }
    .roadmap-icon { font-size: 22px; margin-bottom: 8px; }
    .roadmap-content h4 { font-size: 0.95rem; margin-bottom: 6px; }
    .roadmap-content p { font-size: 0.78rem; line-height: 1.4; }
}




.nami-stories-slider-section {
    background: #ffffff;
    padding: 80px 0 100px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}



.slider-badge {
    color: var(--nami-pink);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.slider-h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--nami-pink) 0%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-underline {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, var(--nami-pink), #ff6a00);
    margin: 15px auto 0 auto;
    border-radius: 10px;
    position: relative;
}

.premium-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    left: 0;
    animation: sliderLineMove 2s infinite linear;
}

@keyframes sliderLineMove {
    0% { left: 0%; }
    50% { left: 100%; transform: translateX(-100%); }
    100% { left: 0%; }
}

.slider-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* GRID SETUP INSIDE SLIDER */
.custom-carousel {
    position: relative;
    padding: 20px 0; /* Cleaned up side padding since arrows are removed */
}

.slider-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Premium Card Architecture */
.slider-card-architecture {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* FIXED: Changed to 85% Aspect Ratio to give portraits maximum headroom and avoid cut-offs */
.slider-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 85%; 
    overflow: hidden;
    background: #f1f5f9;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
}

.slider-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio clean */
    object-position: center 20%; /* Prioritizes displaying faces clearly */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-img-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.25));
}

.slider-company-tag {
    position: absolute;
    bottom: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--dark-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

/* Card Typography Body */
.slider-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slider-card-title {
    font-weight: 800;
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.slider-accent-line {
    width: 35px;
    height: 3px;
    background: var(--nami-pink);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: width 0.3s ease;
}

.slider-card-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* HOVER INTERACTIONS */
.group-hover-trigger:hover .slider-card-architecture {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border-color: var(--nami-pink);
}

.group-hover-trigger:hover .slider-card-img {
    transform: scale(1.04);
}

.group-hover-trigger:hover .slider-accent-line {
    width: 55px;
}

/* CUSTOM BOTTOM CAPSULE DOTS */
.custom-slider-dots {
    bottom: -45px;
}

.custom-slider-dots button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #cbd5e1 !important;
    border: none !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.custom-slider-dots button.active {
    background: linear-gradient(90deg, var(--nami-pink), #ff6a00) !important;
    width: 25px !important;
    border-radius: 10px !important;
}

/* RESPONSIVE DESIGN TUNING (Maintains 2 Columns on Mobile Phones) */
@media (max-width: 991px) {
    .slider-row-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; 
    }
}

@media (max-width: 576px) {
    .nami-stories-slider-section { padding: 50px 0 70px 0; }
    .slider-h2 { font-size: 1.8rem; }
    
    .slider-row-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    
    .custom-slider-dots { bottom: -35px; }
    .slider-img-wrapper { padding-top: 90px; } /* Ensures clean look even on small width mobile grids */
    
    .slider-card-body { padding: 15px 12px; }
    .slider-card-title { font-size: 0.95rem; margin-bottom: 6px; }
    .slider-accent-line { margin-bottom: 10px; height: 2px; }
    .slider-card-desc { font-size: 0.76rem; line-height: 1.4; }
    .slider-company-tag { padding: 4px 8px; font-size: 0.65rem; bottom: 6px; left: 6px; }
}


/* Section Base Styling */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.placement-marquee-section {
    background: #f8fafc; /* Subtle gray background to make the crisp white logo cards pop */
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nami-label-sm {
    color: #ff007a; /* Native Nami Pink */
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.fw-800 {
    font-weight: 800;
    color: #0f172a;
    font-size: 2.5rem;
}

/* Premium Animated Underline Matching the Core Theme */
.premium-underline {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #ff007a, #ff6a00);
    margin: 15px auto 0 auto;
    border-radius: 10px;
    position: relative;
}

.premium-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    left: 0;
    animation: marqueeLineMove 2s infinite linear;
}

@keyframes marqueeLineMove {
    0% { left: 0%; }
    50% { left: 100%; transform: translateX(-100%); }
    100% { left: 0%; }
}

/* The Marquee Container with Perfect Blurs */
.nami-marquee {
    position: relative;
    width: 100%;
    margin-top: 50px;
    display: flex;
    overflow: hidden;
    padding: 15px 0;
    /* Soft faded edges so logos smoothly disappear at corners */
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px; /* Perfectly balance gaps between logos */
    animation: marqueeMove 30s linear infinite;
}

/* FIXED: Clear Logo Box Architecture with Shading and Full Color Integration */
.logo-item {
    flex: 0 0 auto;
    width: 170px;
    height: 75px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    box-sizing: border-box;
    /* Removed the high grayscale & opacity limits for a bright clean presentation */
    filter: grayscale(0%);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Specific standard scale handling for purely text-based logos */
.text-logo-fix img {
    transform: scale(0.85);
}

.black-logo-fix img {
    opacity: 0.85;
}

/* HOVER EFFECT INTERACTION */
.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.04);
    border-color: #ff007a;
    box-shadow: 0 15px 35px rgba(255, 0, 122, 0.08);
}

/* Animation Loop */
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Pause on interaction */
.nami-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .marquee-track { gap: 20px; }
    .logo-item { width: 130px; height: 60px; padding: 12px 18px; border-radius: 14px; }
    .fw-800 { font-size: 1.8rem; }
}



.nami-mock-premium {
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 100px 0;
}


.text-dark-blue { color: var(--dark-blue) !important; }

.nami-badge-pill {
    background: #fff1f7;
    color: var(--nami-pink);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

.nami-h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.text-gradient {
    background: linear-gradient(135deg, var(--nami-pink) 0%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-underline {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, var(--nami-pink), #ff6a00);
    margin: 15px auto 0 auto;
    border-radius: 10px;
    position: relative;
}

.premium-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    left: 0;
    animation: mockLineMove 2s infinite linear;
}

@keyframes mockLineMove {
    0% { left: 0%; }
    50% { left: 100%; transform: translateX(-100%); }
    100% { left: 0%; }
}

.nami-p.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Glassmorphism Left Card Box */
.nami-feature-glass {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 45px;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.015);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nami-feature-glass:hover {
    border-color: rgba(255, 0, 122, 0.3);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.05);
}

.fw-800 { font-weight: 800; letter-spacing: -0.5px; }

.checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.check-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Distinct Contextual Icon Circular Badges */
.check-icon {
    width: 36px;
    height: 36px;
    background: #fff1f7;
    border: 1px solid rgba(255, 0, 122, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--nami-pink);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 0, 122, 0.04);
}

.check-content h6 { 
    font-weight: 700; 
    margin-bottom: 2px; 
    color: var(--dark-blue); 
    font-size: 0.95rem;
}
.check-content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Right Side: The Master Dark Coach Panel */
.nami-coach-panel {
    background: #0b111e;
    border-radius: 32px;
    padding: 45px 35px;
    box-sizing: border-box;
}

.coach-card-minimal {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.coach-card-minimal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.coach-avatar {
    position: relative;
    width: 60px; 
    height: 60px;
    flex-shrink: 0;
}

.coach-avatar img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.company-tag {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 22px; height: 22px;
    background: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
}
.company-google { color: #4285F4; }
.company-ms { color: #00A4EF; }
.company-amazon { color: #FF9900; }
.company-generic { color: var(--nami-pink); }

.coach-meta { flex-grow: 1; }
.coach-meta h6 { color: #ffffff; font-weight: 700; margin: 0; font-size: 1.05rem; }
.coach-meta p { color: #94a3b8; font-size: 0.82rem; margin: 3px 0 6px 0; }

.experience-badge {
    font-size: 9px;
    background: rgba(255, 0, 122, 0.2);
    color: #ff4da6;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 700;
}

.coach-action {
    color: rgba(255,255,255,0.2);
    font-size: 16px;
}

/* Highly Legible Footer Verification Styling Fix */
.verification-notice-text {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8 !important; /* Standout light-slate color */
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.2px;
}

.text-pink-accent {
    color: var(--nami-pink);
    font-size: 1rem;
}

.text-muted-fallback { color: #334155; }

/* Premium CTA Gradient Button */
.nami-btn-primary {
    background: linear-gradient(90deg, #ff007a 0%, #ff5e00 100%);
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
}

.nami-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.25);
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nami-mock-premium { padding: 60px 0; }
    .nami-h2 { font-size: 2rem; }
    .nami-feature-glass, .nami-coach-panel { padding: 30px 20px; border-radius: 24px; }
}